This commit is contained in:
2023-12-10 12:52:15 +01:00
commit bb895b96df
3 changed files with 32 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"[ignore]": {
"editor.formatOnSave": true
},
"[jsonc]": {
"editor.formatOnSave": true
},
"[markdown]": {
"editor.formatOnSave": true
},
"[python]": {
"editor.formatOnSave": true
}
}
@@ -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()
+7
View File
@@ -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)