Files
Python_GUI_tutorial/02 Arbeiten mit Widgets/05 test_frame.py

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()