0
"""
something
"""

OR

'''
something else
'''

What does the """ mean? How is it used?

alwayscurious
  • 1,155
  • 1
  • 8
  • 18
  • 2
    https://stackoverflow.com/questions/17643894/triple-double-quote-v-s-double-quote You'll find an answer here – Florian. C Aug 24 '18 at 12:35
  • This can be answered by reading the [official python documentation](https://docs.python.org/3.6/tutorial/introduction.html?highlight=triple%20quoted%20strings#strings). – Bryan Oakley Aug 24 '18 at 12:44

1 Answers1

1

Refer this answer. There is no difference in other than punctuation which you use.

SanthoshSolomon
  • 1,383
  • 1
  • 14
  • 25