tkinter python 3 windows code example
Example 1: install tkinter
pip install tk
Example 2: tkinter python 3
import tkinter as tk
obj = tk.Tk() # Creates a tkinter object
label = tk.Label(obj, text="This is a text button")
pip install tk
import tkinter as tk
obj = tk.Tk() # Creates a tkinter object
label = tk.Label(obj, text="This is a text button")