4 lines
88 B
Python
4 lines
88 B
Python
|
import tkinter as tk
|
||
|
root = tk.Tk()
|
||
|
root.attributes('-fullscreen', True)
|
||
|
root.mainloop()
|