⬅️ **[[$-Tools|Tools]]**
***
# Python TKinter GUI Framework
- Installation nicht notwendig, da in Python direkt integriert
- [Visual TK](https://visualtk.com/) - Ein Baukasten für UI Formulare
- [YouTube - Codemy - Python GUIs with TKinter](https://www.youtube.com/watch?v=yQSEXcf6s2I&list=PLCC34OHNcOtoC6GglhF3ncJ5rLwQrLGnV)
## Tutorial HelloWorld
1. Neue Python Datei öffnen
2. Code einfügen
```Python
import tkinter as tk
root = tk.Tk()
# place a label on the root window
message = tk.Label(root, text="Hello, World!")
message.pack()
# keep the window displaying
root.mainloop()
```
3. Starten
##
***
Related:
- [[Python]]
- [[$-Software|Software]]