24 Oct Tuesday 17:00 Python Practice – 21.10.19.
Question:
Write a program to use easygui enterbox that asks for your name, then street, then city, then province, then postal code (all in easygui message boxes). The program should then display a mailing-style full address that looks something like this:
Hint:
Do not forget to import easygui in order to use enterbox and msgbox. You can type the following code to get the input from enterbox:
name = easygui.enterbox('What is your name?')
'\n' can help you create a new line
for example, if we type the following code:
print('Kevin\nZhu')
it will show Kevin and Zhu in two different lines
Kevin
Zhu

Sorry, the comment form is closed at this time.