We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d06589b commit 2fb8c85Copy full SHA for 2fb8c85
tkinter-3.py
@@ -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