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.
1 parent dca9f2a commit 4d2debeCopy full SHA for 4d2debe
Calculator with Images/calculator_with_images.py
@@ -5,10 +5,12 @@
5
from PIL import ImageTk , Image
6
7
rt = Tk()
8
-rt.title("Moin's Calculator")
9
-rt.iconbitmap('C:/imgs/icons/calc512px.ico')
+rt.title("Basic Calculator")
+#Change path of ico file here
10
+rt.iconbitmap('C:/imgs/icons/calc512px.ico') #CHANGE PATH
11
rt.geometry("300x430")
-bg = ImageTk.PhotoImage(file="C:/imgs/300x430_bg.png")
12
+#change path of Background file here
13
+bg = ImageTk.PhotoImage(file="C:/imgs/300x430_bg.png") #CHANGE PATH
14
bg_label = Label(rt, image=bg).place(x=0,y=0)
15
16
# Entry Widget
0 commit comments