Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #مثال بسيط في استخدام tkiner
- from tkinter import *
- b=Tk()
- b.title("beko")
- b.geometry("40x40")
- b1=Button(b,text="hi",bg="green",width=3,height=2)
- b1.place(x=300,y=400)
- b.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment