Home  >  Article  >  Backend Development  >  How to comment the whole paragraph in python

How to comment the whole paragraph in python

silencement
silencementOriginal
2019-05-16 17:11:3425323browse

There are many kinds of comments in python, including single-line comments, multi-line comments, and Chinese comments are also commonly used. Python annotations have their own specifications. Comments can serve as notes. When working in a team, code written by individuals is often called by multiple people. In order to make it easier for others to understand the flow of the code, using comments is very effective.

How to comment the whole paragraph in python1. Python single-line comments

In Python, single-line comments use the pound sign, written as #.

When the Python program is running, the content after # will not be executed and is treated as a comment

How to comment the whole paragraph in python

The output result is I love python, the content after # It is not executed

2. Python multi-line comments

There will also be comments with many lines in python. In this case, multiple lines need to be batched. Comment symbol. Multi-line comments are enclosed in triple quotes ''' '''.

How to comment the whole paragraph in python

When using multi-line comments, avoid mixing single quotes and double quotes!

The above is the detailed content of How to comment the whole paragraph in python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:What is python's idleNext article:What is python's idle