Mar-21-2020, 08:30 PM
import tkinter as tk
from tkinter import *
gui = Tk(className=' Enter Password.')
password = int("5454")
button_pressed = False
# set window size
gui.geometry("500x200")
gui.resizable(False, False)
tex = Label(gui, text="Enter Your Password...")
tex1 = Text(gui, width=4,height=30)
tex1.insert(tk.END, "Enter your Password to enter your Computer.")
tex.pack()
tex1.pack()
gui.mainloop()
if button_pressed == True:
# code will be here soon...When i run the code it does nothing... A Little Help Pweez.
