Übungen der ersten beiden Kapitel gemacht.
This commit is contained in:
7
01 Erste GUI Applikation/02_uebung1.py
Normal file
7
01 Erste GUI Applikation/02_uebung1.py
Normal file
@@ -0,0 +1,7 @@
|
||||
import tkinter as tk
|
||||
|
||||
window = tk.Tk()
|
||||
label = tk.Label(text="Python rocks!")
|
||||
label.pack()
|
||||
|
||||
window.mainloop()
|
||||
Reference in New Issue
Block a user