PYTHON GUI(PROJECT) QUESTIONS
1. Write a Python GUI program to import Tkinter package and create a window and set its title.
2. Write a Python GUI program to import Tkinter package and create a window. Set its title and add a label to the window.
3. Write a Python GUI program to create a label and change the label font style (font name, bold, size) using tkinter module.
4. Write a Python GUI program to create a window and set the default window size using tkinter module.
5. Write a Python GUI program to create a window and disable to resize the window using tkinter module.
6. Write a Python GUI program to add a button in your application using tkinter module.
7. Write a Python GUI program to add a canvas in your application using tkinter module.
8. Write a Python GUI program to create two buttons exit and hello using tkinter module.
9. Write a Python GUI program to create a Combobox with three options using tkinter module.
10. Write a Python GUI program to create a Checkbutton widget using tkinter module.
11. Write a Python GUI program to create a Spinbox widget using tkinter module.
12. Write a Python GUI program to create a Text widget using tkinter module. Insert a string at the beginning then insert a string into the current text. Delete the first and last character of the text.
14. Write a Python GUI program to create three single line text-box to accept a value from the user using tkinter module.
15. Write a Python GUI program to create three radio buttons widgets using tkinter module.
16. Write a Python GUI program to create a ScrolledText widgets using tkinter module.
17.Write a Python GUI program to create a Progress bar widgets using tkinter module.
18.Write a Python GUI program to create a Listbox bar widgets using tkinter module.