4 lines
79 B
Python
4 lines
79 B
Python
import tkinter as tk
|
|
root = tk.Tk()
|
|
root.geometry("1072x1448")
|
|
root.mainloop()
|