what is tkinter module in python code example
Example 1: python tkinter
import tkinter as tk
obj = tk.Tk() # Creates a tkinter object
label = tk.Label(obj, text="This is a text button")
Example 2: How to import tkinter in python
# only works in Python 2.x
import Tkinter
# only works in Python 3.x
import tkinter