commit bb895b96df3b1afb014589de38c07d4225830691 Author: Michel Bats Date: Sun Dec 10 12:52:15 2023 +0100 Lesson #1 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)