Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

add title to tkinter window python

import tkinter as tk #import module
window = tk.Tk()
window.title("Example Title!") #set title to anything

window.mainloop() #make the window
 
PREVIOUS NEXT
Tagged: #add #title #tkinter #window #python
ADD COMMENT
Topic
Name
4+9 =