hello world

master
Martin Putzlocher 2021-11-01 14:11:39 +01:00
parent bdaad35129
commit 883053c716
1 changed files with 7 additions and 0 deletions

7
tk_first_steps/hello.py Normal file
View File

@ -0,0 +1,7 @@
from tkinter import *
from tkinter import ttk
root = Tk()
ttk.Button(root, text = "Hello World").grid()
root.mainloop()