Lesson #1
This commit is contained in:
Vendored
+14
@@ -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()
|
||||
@@ -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)
|
||||
Reference in New Issue
Block a user