Exercise 9 · Chapter: PrintOptional+50 XP
ASCII Art
Print this house using text characters:
/\ / \ / \ ------ | | | | ------
Hint: The backslash is a special character in Python. To print one backslash, you need to type two: print("\\") outputs a single backslash.
Need a hint?
3 available · costs 5 XP each
python
Output
Run your code to see the output here.