If I wanted to print multiple lines of text in Python without typing print('') for every line, is there a way to do that?
print('')
I'm using this for ASCII art.
(Python 3.5.1)
You can use triple quotes (single ' or double "):
a = """ text text text """ print(a)
1.4m articles
1.4m replys
5 comments
57.0k users