In this simple post I’ll show you how to print something with tkinter.
Python code:
1 2 3 4 5 6 7 8 9 10 | #tested and working on PYTHON 3.8 AND ADDED TO PATH import tkinter as tk win = tk.Tk() a = tk.Label(win, text="hello world") a.pack() win.mainloop() |
Output: