+ 1
""". What does this mean in python?
4 Answers
+ 2
They are verbatim strings. When you use triple quotes (single or double), the newline, tab, whitespace, and other special characters are represented as they are, without the need to escape them.
They are similar to verbatim strings (different syntax) in C# and other languages.
"""First line
Second line
Third line"""
Would be the same as;
"First line\nSecond line\nThird line"
+ 1
Hi Aarya chandel
Theyâre essentially multi line comments.
https://www.sololearn.com/learning/2288/
+ 1
Puedes checar la siguiente leccion acerca de los comentarios y docstrings:
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2288/?ref=app
0
With this level of knowledge, you need to start studying the course "Python for Beginners"