Password Box : It is used to get the input from the user which is in form of password i.e masked input, input can be any keyboard input, it takes input in form of string. It displays the title, message to be displayed, place to enter a text and a pair of “Ok”, “Cancel” button which is used confirm the input. Also we can set some default text to the place where user enter text, below is how the password box looks like

In order to do this we will use passwordbox
method
Syntax : passwordbox(message, title, default_text)
Argument : It takes 3 arguments, first string i.e message/information to be displayed, second string i.e title of the window and third is string which is default text
Return : It returns the entered text and None if cancel is pressed
Example :
In this we will create a password box with default text, and will show the specific message on the screen according to the entered text, below is the implementation
from easygui import *
text = "Enter the password to enter GeeksforGeeks"
title = "Window Title GfG"
default_password = "geeksforgeeks"
output = passwordbox(text, title, default_password)
title = "Message Box"
message = "Password entered by user : " + str (output)
msg = msgbox(message, title)
|
Output :
Another example
In this we will create a password box without default text, and will show the specific message on the screen according to the entered text, below is the implementation
from easygui import *
text = "Enter the new password for GeeksforGeeks"
title = "Window Title GfG"
output = passwordbox(text, title)
title = "Message Box"
message = "Password entered by user : " + str (output)
msg = msgbox(message, title)
|
Output :
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!