From bb895b96df3b1afb014589de38c07d4225830691 Mon Sep 17 00:00:00 2001 From: Michel Bats Date: Sun, 10 Dec 2023 12:52:15 +0100 Subject: [PATCH] Lesson #1 --- .vscode/settings.json | 14 ++++++++++++++ .../hello.py | 11 +++++++++++ readme.md | 7 +++++++ 3 files changed, 32 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 001. Create Graphical User Interfaces With Python And TKinter/hello.py create mode 100644 readme.md diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..93146eb --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,14 @@ +{ + "[ignore]": { + "editor.formatOnSave": true + }, + "[jsonc]": { + "editor.formatOnSave": true + }, + "[markdown]": { + "editor.formatOnSave": true + }, + "[python]": { + "editor.formatOnSave": true + } +} \ No newline at end of file diff --git a/001. Create Graphical User Interfaces With Python And TKinter/hello.py b/001. Create Graphical User Interfaces With Python And TKinter/hello.py new file mode 100644 index 0000000..8435fe3 --- /dev/null +++ b/001. Create Graphical User Interfaces With Python And TKinter/hello.py @@ -0,0 +1,11 @@ +from tkinter import * + +root = Tk() + +# Creating a Label Widget +myLabel = Label(root, text="Hello World!") +# Shoving it onto the screen +myLabel.pack() + + +root.mainloop() diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..fe01bc4 --- /dev/null +++ b/readme.md @@ -0,0 +1,7 @@ +# Python GUI's With TKinter + +[YouTube Playlist by Codemy.com](https://www.youtube.com/playlist?list=PLCC34OHNcOtoC6GglhF3ncJ5rLwQrLGnV) + +## Lessons + +* [Create Graphical User Interfaces With Python And TKinter](https://www.youtube.com/watch?v=yQSEXcf6s2I&list=PLCC34OHNcOtoC6GglhF3ncJ5rLwQrLGnV)