Multi-line Comments

Comments that span multiple lines – used to explain things in more detail – are created by adding a delimiter (""") on each end of the comment.

””” This would be a multiline comment
in Python that spans several lines and
describes your code, your day, or anything you want it to
…
“”” 

Remember to comment as often as possible. It’s important!

你可能感兴趣的:(Multi-line Comments)