from tkinter import Tk
def main():
root = Tk()
root.title('Title')
root.mainloop()
if __name__ == '__main__':
main()