3. How to set title in tkinter python gui

Опубликовано: 19 Октябрь 2024
на канале: UBprogrammer - Hindi
24
0

3. How to set title in tkinter python gui

Note : Recplace (greater than) and (less than) with their sign/symbol ( Because Youtube donot allow angle brackets in description ) OR You can get this code on github by using github link

Code github Link : https://github.com/ubaidahmadceh/tkin...

code :

from tkinter import *

root=Tk()

root.geometry("400x400")

root.title("Your Title") # Replace Your Title With Title you want

root.mainloop()