-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOUTFITS.py
More file actions
29 lines (17 loc) · 734 Bytes
/
Copy pathOUTFITS.py
File metadata and controls
29 lines (17 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from tkinter import*
root=Tk()
root.geometry("500x300")
root.title("OUTFITS")
texty = Label(root,text="OUTFITS",font="Tahoma 30 bold", fg="#FFC11A" , pady=20,padx=20 )
texty.pack()
Option=Label(root, font="Arial",text="BAGS, CAPS, WATCHES , PERFUEMS, and more...").pack(padx=4
)
myinput = Entry(root , width=50).pack(pady=10,padx=10)
buyes = " You CAn Buy : [Bags, Watches , PERFUEMS , Caps , Karrtatt , M7afe4]"
def fun1 ():
print("!:Added To Cart")
def fun2 ():
input(buyes)
mybutton = Button(root, text="See What i can buy", fg="black" ,bg="Gold",font="Arial", command=fun2).pack()
mybutton = Button(root, text="Add To Cart", fg="black" ,bg="Gold",font="Arial", command=fun1).pack()
root.mainloop()