here is my code
from tkinter import * root = Tk() # Creating a Label Widget mylabel = Label(root,text="Hello world!") # Showing in onto the screen m