What does the Python language use to distinguish code levels?

Release: 2019-07-01 11:52:24
Original
6080 people have browsed it

What does the Python language use to distinguish code levels?

The Python language uses strict "indentation" to indicate the format framework of the program. Indentation refers to the blank space before the beginning of each line of code, which is used to indicate the inclusion and hierarchical relationship between codes.

1 indent = 4 spaces.

Indentation is the only way to indicate the program framework in the Python language. When expressing program meanings such as branches, loops, functions, classes, etc., complete statements containing reserved words such as if, while, for, def, class, etc. Finally, it ends with an English colon (:) and is indented afterwards, indicating the ownership relationship between the subsequent code and the immediately unindented statement.

Indentation style

Single-level indentation:

What does the Python language use to distinguish code levels?

Multiple-level indentation:

What does the Python language use to distinguish code levels?

For more Python related technical articles, please visit the Python Tutorial column to learn!

The above is the detailed content of What does the Python language use to distinguish code levels?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template