##########################################################################################
# Create a Tkinter screen with a label
##########################################################################################
from tkinter import *			            #import entire tkinter framework
    
#### Create the window components ###########################################################

win = Tk( )					                    #call Tk( ) constructor to create a root window
win.title("A Tkinter Window with a Label")	    #set a window title
win.geometry("200x100")                         #window HorizaontalxVertical size 

frame1 = Frame(win)                             #create a frame container

nameLabel = Label(frame1, text="Enter you name ")

nameLabel.pack()                                #place the label in the frame
frame1.pack()                                   #make the frame visible
win.mainloop()                                  #make the window visible