w3resource

Python tkinter Basic Exercise: Create a window and disable to resize the window using tkinter module

Python tkinter Basic: Exercise-5 with Solution

Write a Python GUI program to create a window and disable to resize the window using tkinter module.

Sample Solution:

Python Code:

import tkinter as tk
parent = tk.Tk()
parent.title("-Welcome to Python tkinter Basic exercises-")
# Disable resizing the GUI
parent.resizable(0,0)
parent.mainloop()

Sample Output:

Tkinter: Create a window and disable to resize the window using tkinter module

Flowchart:

Flowchart: Create a window and disable to resize the window using tkinter module

Python Code Editor:

Previous: Create a window and set the default window size using tkinter module.
Next: Python Tkinter GUI program: Adding labels and buttons.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

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-basic-exercise-5.php