Q:

tkinter app icon

# Importing Tkinter module 
from tkinter import * from tkinter.ttk import *
  
# Creating master Tkinter window 
master = Tk() 
  
# Creating object of photoimage class 
# Image should be in the same folder 
# in which script is saved 
p1 = PhotoImage(file = 'info.png') 
  
# Setting icon of master window 
master.iconphoto(False, 'info.png') 
  
# Creating button 
b = Button(master, text = 'Click me !') 
b.pack(side = TOP) 
  
# Infinite loop can be terminated by 
# keyboard or mouse interrupt 
# or by any predefined function (destroy()) 
mainloop() 
1
import tkinter as tk

root = tk.Tk()
root.iconbitmap("myIcon.ico")
0

New to Communities?

Join the community