how to create a button in python?
GIVE correct answer
Answers
Answered by
1
Answer:
1. #python application to create a simple button.
2. from tkinter import*
3. top = Tk()
4. top.geometry("200×100")
5. b = Button(top,text= "Simple")
6. b.pack()
7. top.mainaloop()
Explanation:
PLEASE MARK ME AS BRAINLIST
Similar questions