İmport Tkinter as tk
Root = tk.Tk()
Root. Title("basit Tkinter penceresi")
Root. Geometry("400x300")
Label = tk. Label(root, text="merhaba dünya!", font=("arial", 24))
Label. Pack(pady = 50)
Button = tk. Button(root, text="tıkla")
button.pack()
root.mainloop()
Visual Code'a yazıyorum fakat...