from tkinter import *
root = Tk()
root.title("Анкета")
root.geometry("400x250")
label = Label(root, text="Я вмію створювати віджети в Python")
label.place(relx=.5, rely=.5, anchor="c")
root.mainloop()
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
from tkinter import *
root = Tk()
root.title("Анкета")
root.geometry("400x250")
label = Label(root, text="Я вмію створювати віджети в Python")
label.place(relx=.5, rely=.5, anchor="c")
root.mainloop()