2 odpowiedzi
+ 2
These are used to write multiline comments in python
+ 3
Triple quotes are used to write multiline comments.
e.g """This is a comment
This is another comment
This is another comment1"""
Above lines will be treated as comment because they are enclosed in triple quotes
And # is used for single line comment
e.g #This is comment