Multi-line Comments
2018-01-12 本文已影响8人
成江
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!