--:--
卡农
使用国际互联网体验更佳
Project: Python 教程 4: 控制流 (if Statements)
article-project/

Python 教程 4: 控制流 (if Statements)

If Statements

Perhaps the most well-known statement type is the if statement. For example:

x = int(input("Please enter an integer: "))
Please enter an integer: 42
if x < 0:
    x = 0
    print('Negative changed to zero')
elif x == 0:
    print('Zero')
elif x == 1:
    print('Single')
else:
    print('More')

There can be zero or more elif parts, and the else part is optional. The keyword ‘elif’ is short for ‘else if’, and is useful to avoid excessive indentation. An if … elif … elif … sequence is a substitute for the switch or case statements found in other languages.

If you’re comparing the same value to several constants, or checking for specific types or attributes, you may also find the match statement useful. For more details see Match Statements.

NORMAL docs/Python 教程 4: 控制流 (if Statements).md 0%
```