w3resource

Python tkinter Basic Exercise: Create a window and Set its title and add a label to the window

Python tkinter Basic: Exercise-2 with Solution

Write a Python GUI program to import Tkinter package and create a window. Set its title and add a label to the window.

Sample Solution:

Python Code:

import tkinter as tk
parent = tk.Tk()
parent.title("-Welcome to Python tkinter Basic exercises-")
my_label = tk.Label(parent, text="Label widget")
my_label.grid(column=0, row=0)
parent.mainloop()

Sample Output:

Flowchart: Import Tkinter package and create a window. Set its title and add a label to the window

Flowchart:

Flowchart: Import Tkinter package and create a window. Set its title and add a label to the window

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python GUI program to import Tkinter package and create a window and set its title.
Next: Write a Python GUI program to create a label and change the label font style (font name, bold, size) using tkinter module.

What is the difficulty level of this exercise?

Test your Python skills with w3resource's quiz


Python: Tips of the Day

Returns the n minimum elements from the provided list. If n is greater than or equal to the provided list's length, then return the original list (sorted in ascending order).

Example:

def tips_min(lst, n=1):
  return sorted(lst, reverse=False)[:n]
print(tips_min([1, 2, 3, 4, 5]))
print(tips_min([1, 2, 3, 4, 5], 3))

Output:

[1]
[1, 2, 3]