TORONTO KIDS COMPUTER CLUB | Tuesday 17:00 Python Practice – 03 20.09.29.
18372
post-template-default,single,single-post,postid-18372,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Tuesday 17:00 Python Practice – 03 20.09.29.

01 Oct Tuesday 17:00 Python Practice – 03 20.09.29.

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
No Comments

Sorry, the comment form is closed at this time.