how to change the color of text with tkinter code example
Example: text color python tkinter
from tkinter import *
root=Tk()
l1=Label(root,text="hello world",fg="red").pack()
from tkinter import *
root=Tk()
l1=Label(root,text="hello world",fg="red").pack()