Skip to content
View zorrocr's full-sized avatar

Highlights

  • Pro

Block or report zorrocr

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
zorrocr/README.md

#Import the required libraries from tkinter import *

#Create an instance of tkinter frame win= Tk()

#Set the geometry of frame win.geometry("600x250")

#Create a frame frame = Frame(win) frame.pack(side="top", expand=True, fill="both")

#Create a text label Label(frame,text="Enter the Password", font=('Helvetica',20)).pack(pady=20)

def clear_frame(): for widgets in frame.winfo_children(): widgets.destroy()

#Create a button to close the window Button(frame, text="Clear", font=('Helvetica bold', 10), command= clear_frame).pack(pady=20)

win.mainloop()

Popular repositories Loading

  1. zorrocr zorrocr Public

    Config files for my GitHub profile.

  2. p p Public