About

To know about me run the below code

import tkinter as tk 
import random 
def change_color():
    colors = [“red”, “orange”, “yellow”, “green”, “blue”, “purple”]
    color = random.choice(colors)
    label.config(fg=color)
    root.after(1000, change_color)
def show_about():
    about_text = “Greetings, traveler!\n\n” \
                 “I am Saurabh, a sorcerer of Python spells.\n” \
                 “My heart beats with the rhythm of technology, and my soul dances with code.\n” \
                 “May my creations spark joy and curiosity in your journey!\n\n” \
                 “If you seek wisdom or wish to share your adventures, send your missives to Saurabhshet86@gmail.com.”
    about_window = tk.Toplevel(root)
    about_window.title(“A Glimpse of the Enchanter”)
    label = tk.Label(about_window, text=about_text, padx=20, pady=20)
    label.pack()
root = tk.Tk()
root.title(“The Chronicles of Saurabh”)
label = tk.Label(root, text=”Welcome, Traveler!”, padx=20, pady=20, font=(“Helvetica”, 20))
label.pack()
change_color()
about_button = tk.Button(root, text=”Unravel the Mysteries”, command=show_about)
about_button.pack()
root.mainloop()