Python tkinter Basic Exercise: Create a window and set the default window size using tkinter module
Write a Python GUI program to create a window and set the default window size using tkinter module.
Sample Solution:
Python Code:
import tkinter as tk
parent = tk.Tk()
parent.title("-Welcome to Python tkinter Basic exercises-")
parent.geometry('600x300')
parent.mainloop()
Sample Output:
Python Code Editor:
Previous: Write a Python GUI program to create a label and change the label font style (font name, bold, size) using tkinter module.
Next: Write a Python GUI program to create a window and disable to resize the window using tkinter module.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics