Open In App

Python EasyGUI – Enter Box

Enter Box : It is used to get the input from the user, 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 enter box looks like

In order to do this we will use enterbox method Syntax : enterbox(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 enter box with default text, and will show the specific message on the screen according to the entered text, below is the implementation 




# importing easygui module
from easygui import *
 
# message to be displayed
text = "Enter your Geek name !!"
 
# window title
title = "Window Title GfG"
 
# default text
d_text = "Enter here.."
 
# creating a enter box
output = enterbox(text, title, d_text)
 
# title for the message box
title = "Message Box"
 
# creating a message
message = "Entered Name : " + str(output)
 
# creating a message box
msg = msgbox(message, title)

Output :



Another Example : In this we will create a enter box, and will show the specific message on the screen according to the entered text, below is the implementation 




# importing easygui module
from easygui import *
 
# message to be displayed
text = "Enter Something"
 
# window title
title = "Window Title GfG"
 
 
# creating a enter box
output = enterbox(text, title)
 
# title for the message box
title = "Message Box"
 
# creating a message
message = "Entered string : " + str(output)
 
# creating a message box
msg = msgbox(message, title)

Output :


Article Tags :