what does 3 quotes ,""" string""" mean? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what does 3 quotes ,""" string""" mean?

24th Oct 2016, 4:14 AM
junxuan
junxuan - avatar
2 Answers
+ 6
Those are used in Python to define Docstrings in your code. They also work to define multiple line comments. To use them as Docstrigs, they have to be written just after the def line of your function like this: def someFunc(): """ Everything here is a Docstring... It can span as many lines as needed... Enough!! """ print("Hello world!) Anywhere else, it will be just multiline comments with whatever info you want to add to your code.
24th Oct 2016, 4:22 AM
Nelson Urbina
Nelson Urbina - avatar
+ 2
It is used for multi line comments
24th Oct 2016, 5:18 AM
Waqas Asghar Bhalli
Waqas Asghar Bhalli - avatar