Python tkinter widgets Exercise: Add a button in your application using tkinter module
Python tkinter widgets: Exercise-1 with Solution
Write a Python GUI program to add a button in your application using tkinter module.
Sample Solution:
Python Code:
import tkinter as tk
parent = tk.Tk()
parent.title('Title - button')
my_button = tk.Button(parent, text='Quit', height=1, width=35, command=parent.destroy)
my_button.pack()
parent.mainloop()
Explanation:
In the exercise above -
- import tkinter as tk - Import the required libraries.
- parent = tk.Tk() - Create the main Tkinter window.
- parent.title('Title - button') - Create the title of the window.
- my_button = tk.Button(parent, text='Quit', command=parent.destroy) - Create a "Quit" button that closes the window.
- my_button.pack() - Display the button in the window.
- parent.mainloop() - Start the Tkinter main loop.
Sample Output:
Flowchart:
Python Code Editor:
Previous: Python tkinter widgets Exercise Home
Next: Write a Python GUI program to add a canvas in your application using tkinter module.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/tkinter/python-tkinter-widgets-exercise-1.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics