General format for Python-indentation

Source: Internet
Author: User

Python's syntax is simple, indented, and the code is written like this:

# Print absolute value of an integer:a =if a >= 0:    print(a)els E:    Print(-a)

#the statement at the beginning is a comment, and the comment is visible to the person and can be anything, and the interpreter ignores the comment. Each of the other lines is a statement, and when the statement ends with a colon : , the indented statement is treated as a block of code.

Indentation has pros and cons. The advantage is that you are forced to write the formatted code, but there is no rule that indents are a few spaces or tabs. In accordance with established management, you should always stick to the indentation of 4 spaces.

Another benefit of indenting is forcing you to write less indented code, and you tend to split a very long piece of code into several functions, resulting in less code being indented.

The downside of indentation is that the "copy-paste" function fails, which is the most pit-daddy place. When you refactor the code, the pasted past code must re-check that the indentation is correct. In addition, it is difficult for the IDE to format Python code just like formatted Java code.

Finally, it is important to note that the Python program is case-sensitive, and if the case is written incorrectly, the program will give an error.

Summary

Python uses indentation to organize blocks of code, so be sure to follow the customary conventions and stick to the indentation of 4 spaces.

In the text editor, you need to set the tab to automatically convert to 4 spaces, making sure you don't mix tabs and spaces.

General format for Python-indentation

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.