Ex
Exerpad
🔥0
0 XP
Lv.1 Beginner

ASCII Art

Print this house using text characters:

text
  /\
 /  \
/    \
------
|    |
|    |
------

Hint: The backslash is a special character in Python. To print one backslash, you need to type two: print("\\") outputs a single backslash.

python

Exerpad — Learn to Code with Fun!