Just set it to full-screen:
import tkinter
example_window = tkinter.Tk()
example_window.attributes('-fullscreen', True)
solved How do you make a basic fullscreen window in Python?
Just set it to full-screen:
import tkinter
example_window = tkinter.Tk()
example_window.attributes('-fullscreen', True)
solved How do you make a basic fullscreen window in Python?