Write a Python program that uses the Tkinter library to create a window with a title.
# title and window tkinter
from tkinter import Tk
root = Tk()
root.title("Custom window title")
root.mainloop()
note
To compile and run the program, you can use the following commands:
python3 foo.py