An alternative way to implement multiple-line annotations in Python _python

Source: Internet
Author: User

The Python program's annotations feel very antisocial, and for those accustomed to using/**/multiline annotations, it is painful to use only the # in Python for single-line annotations.

Copy Code code as follows:

# This is a single-line comment
# a = 50
# b = 10
# c = 10

In fact, we can implement multiline annotations in a format defined by multiple lines of text:
Copy Code code as follows:

"""
# This is a multiline comment.
A = 50
b = 10
c = 10
"""

This approach feels good, and it doesn't make much difference to/**/multiline annotations, which works well when debugging code, and can be used to annotate parts of the code directly using multiple lines of text definition symbols. Perhaps Python's multiline text definition could have been used as a comment, except that the manual was not explicitly written for multiline annotations.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.