Übung umbenannt.
This commit is contained in:
10
02 Arbeiten mit Widgets/05 test_widgets.py
Normal file
10
02 Arbeiten mit Widgets/05 test_widgets.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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()
|
||||
Reference in New Issue
Block a user