Python Tkinter Window Fullcaen
import tkinter as tk
root = tk.Tk()
root.attributes('-fullscreen',True)
Comfortable Cottonmouth
import tkinter as tk
root = tk.Tk()
root.attributes('-fullscreen',True)
from tkinter import*
root = Tk()
root.attributes('-fullscreen',True)
root.mainloop()