diff --git a/tk_first_steps/hello.py b/tk_first_steps/hello.py new file mode 100644 index 0000000..8be090c --- /dev/null +++ b/tk_first_steps/hello.py @@ -0,0 +1,7 @@ +from tkinter import * +from tkinter import ttk + +root = Tk() +ttk.Button(root, text = "Hello World").grid() +root.mainloop() +