how to make a window translucent in tkinter
from tkinter import *
root = Tk()
# this will give a translucent window
root.attributes('-alpha', 0.5)
# this will give a transparent windows
root.attributes('-alpha', 0)
# this will give a solid color windows
root.attributes('-alpha', 1)
root.mainloop()