tikinter module code example
Example 1: python gui
import tkinter as tk
#Importing the main module
window = tk.Tk()
window.mainloop()
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")