This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
name = Label(parent,text = "What's your name").grid(row= 0, column = 0) e1 = Entry(parent).grid(row = 0, column = 1) password = Label(parent, text = "what's your ...
First, create a new instance of the Label widget. Second, place the Label on the main window by calling the pack() method. If you don’t call the pack() function, the program still creates the label ...