Python Hello World
💡
Exercise 5

Snail Mail 15 XP Easy

Ctrl+Enter Run Ctrl+S Save

Great job finishing the first exercises! Now let's put it all together.

Imagine you're sending a letter. You need to print an envelope with a name, street address, city, state, and zip code.

Here's an example of what the envelope might look like:

print('+------------------------------+') print('| |') print('| Ada Lovelace |') print('| 123 Code Street |') print('| London, UK 10001 |') print('| |') print('+------------------------------+')
📋 Instructions
Using `print()`, create your own **mail envelope** with: - Your name (or a made-up name) - A street address - City, state/country, and zip code - A decorative border around it Be creative with the border characters!
Use characters like +, -, |, and = to create the border. Make sure each line is the same width.
⚠️ Try solving it yourself first — you'll learn more!
print('+------------------------------+')
print('|                              |')
print('|   Ada Lovelace              |')
print('|   123 Code Street           |')
print('|   London, UK 10001          |')
print('|                              |')
print('+------------------------------+')
main.py
Hi! I'm Rex 👋
Output
Ready. Press ▶ Run or Ctrl+Enter.