How to use a triple-quoted string in Python

1 Answer

0 votes
s = """Python 3.7.1 and 3.6.7 are now available.
Python 3.7.1 is the first maintenance release of the "newest feature release"."""

print(s)

'''
run:

Python 3.7.1 and 3.6.7 are now available.
Python 3.7.1 is the first maintenance release of the "newest feature release".

'''

 



answered Nov 11, 2018 by avibootz
...