Python_3_und_tkinter/example_002.py

12 lines
137 B
Python

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