Files
Python_GUI_tutorial/02 Arbeiten mit Widgets/05 test_widgets.py
2024-02-24 00:45:13 +01:00

10 lines
161 B
Python

import tkinter as tk
window = tk.Tk()
entry = tk.Entry(width=40, bg='white', fg='black')
entry.pack()
entry.insert(0, "What is your name?")
window.mainloop()