From 883053c7166856f5beb1f7d22250a032f418745a Mon Sep 17 00:00:00 2001 From: Martin Putzlocher Date: Mon, 1 Nov 2021 14:11:39 +0100 Subject: [PATCH] hello world --- tk_first_steps/hello.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tk_first_steps/hello.py 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() +