Skip to content

Commit 7f7eba6

Browse files
authored
this is an file i just made
this took so long but its an app!
0 parents  commit 7f7eba6

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

python app/app.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)