Skip to content

Commit 2fb8c85

Browse files
Create tkinter-3.py
1 parent d06589b commit 2fb8c85

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tkinter-3.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from tkinter import *
2+
import tkinter as tk
3+
root = tk.Tk()
4+
root.title('Instagram')
5+
6+
#iconbitmap() method is used to set the icon in a GUI window.
7+
root.iconbitmap(r'C:\Users\USER\Desktop\instagram.ico')
8+
9+
root.mainloop()

0 commit comments

Comments
 (0)