Python TK Fullscreen
from tkinter import *
root = Tk()
root.attributes('-fullscreen',True)
button = Button (root, text="Exit", command=root.destroy)
button.pack()
root.mainloop()
gamermj223