We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 7f7eba6Copy full SHA for 7f7eba6
python app/app.py
@@ -0,0 +1,22 @@
1
+import tkinter as tk
2
+
3
+root = tk.Tk()
4
5
6
+# this is my window script
7
+root.title("joshuakingstech.com")
8
+root.configure(background="blue")
9
+root.minsize(2000, 2000)
10
+root.maxsize(2000, 2000)
11
12
+tk.Label(root, text="this is joshuas app!").pack()
13
+tk.Label(root, text="and joshua is cool").pack()
14
+tk.Label(root, text="and joshua coded this and tottally did not use tutorials").pack()
15
+tk.Label(root, text="no but atually this took so long!").pack()
16
+tk.Label(root, text="so i will update tomorrow :)").pack()
17
+tk.Label(root, text="also visit joshuaking.icu and joshuakingstech.com bye!").pack()
18
19
20
+root.mainloop()
21
22
+print ("Opened Program!")
0 commit comments