An alternative way for Python to implement multi-line annotations

Source: Internet
Author: User
The Python program's comments feel very gregarious, and for those accustomed to using/**/multi-line annotations, it is painful to use only the # number for single-line comments in Python.

The code is as follows:


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


In fact, we can implement multi-line annotations in a format defined by multiple lines of text:

The code is as follows:


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


This method feels good, with/**/multi-line comment is not very different, this is useful when debugging code, you can directly use the multi-line text definition symbol to comment off the code. Perhaps Python's multi-line text definition function could have been used as a comment, except that the manual was not explicitly written for multiline comments.
  • Related Article

    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.