Answers for "title() is used for in tkinter"

3

tkinter window title

from tkinter import *
window = Tk()  # Create instance 
window.title("This is the window title!!!")  # Add a title
Posted by: Guest on February-26-2021
0

python tkinter frame title

from tkinter import *

root = Tk()
root.title("Title of the GUI")
root.geometry("500x400") # (length x width)
root.pack()
root.mainloop()
Posted by: Guest on January-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language