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
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.