The answer to triple quotes is great for ascii art, but for those who wonder: what if my multiple lines are a tuple, list, or other iterable that returns the lines (maybe understanding the list?), And then:
print("\n".join(<*iterable*>))
For example:
print("\n".join([ "{}={}".format(k, v) for k, v in os.environ.items() if 'PATH' in k ]))
pourhaus
source share