from tkinter import *
root = Tk()
root.title("Вікно з відступами")
root.geometry("490x440+400+200")
root.configure(bg="green")
root.resizable(width=False, height=False)
root.mainloop()
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
from tkinter import *
root = Tk()
root.title("Вікно з відступами")
root.geometry("490x440+400+200")
root.configure(bg="green")
root.resizable(width=False, height=False)
root.mainloop()