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