IMPORT Tkinter WHICH PYTHON VERSION code example
Example 1: how to install tkinter for python
# for pip and windows, in cmd, write:
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")