if wanted print multiple lines of text in python without typing print('') every line, there way that? i'm using askii art.
(python 3.5.1) thank you.
you can use triple quotes (single ' or double "):
a = """ text text text """ print(a)
if wanted print multiple lines of text in python without typing print('') every line, there way that? i'm using askii art.
(python 3.5.1) thank you.
you can use triple quotes (single ' or double "):
a = """ text text text """ print(a)
Comments
Post a Comment