Answers for "how to change name of tk window python"

6

change tkinter window name

windowName.title('Window Title')

#Example
import tkinter
window = tkinter.Tk()
window.title('My Title')
Posted by: Guest on April-13-2020

Code answers related to "how to change name of tk window python"

Python Answers by Framework

Browse Popular Code Answers by Language