Python Hello World
💡
Exercise 4

Initials 15 XP Easy

Ctrl+Enter Run Ctrl+S Save

You're getting the hang of print()! Let's try something more personal.

In this exercise, you'll create a block letter version of your initials using characters. For example, if your name is Ada Lovelace, your initials are A and L:

print(' A L ') print(' A A L ') print('AAAA L ') print('A A LLLL ')

Get creative! There's no single correct answer here.

📋 Instructions
Using `print()`, create block letters of **your own initials**. For example, if your name starts with C and R: ``` CCC RRRR C R R C RRRR C R R CCC R R ``` Be creative with the characters you use! This exercise accepts any output.
Plan your letters on paper first. Each letter is about 5 lines tall and 4-5 characters wide.
⚠️ Try solving it yourself first — you'll learn more!
print('  A      L    ')
print(' A A     L    ')
print('AAAA    L    ')
print('A   A    LLLL ')
main.py
Hi! I'm Rex 👋
Output
Ready. Press ▶ Run or Ctrl+Enter.