6 lines
No EOL
88 B
Python
6 lines
No EOL
88 B
Python
from tkinter import *
|
|
|
|
root = Tk()
|
|
root.attributes("-fullscreen", True)
|
|
|
|
root.mainloop() |