02 條件語句

2022-06-20 17:27:10 字數 937 閱讀 5640

if

條件: 條件成立後的**...

...else

: 條件不成立後的**...

...

#

示例1print('開始'

)if 5 == 5:

print('

123'

)else

:

print('

456'

)print('結束'

)#示例2num = 19

if num > 10:

print('

num變數對應值大於10')

else

:

print('

num變數對應值不大於10')

#示例3

username = '

ccc'

password = '

123'

if username == '

ccc'

and password == '

123'

print('

登入成功')

else

:

print('

登入失敗

')

if

條件a:

a成立所執行的**

...elif

條件b:

b成立所執行的**

...elif

條件c:

c成立所執行的**

...else

: abc都不成立所執行的**

if

條件a:

...if條件a1:

...else

: ...

elif

條件b:

...

python學習 02 條件語句

if expression expr true suiteif 2 1and not2 3 print correct judgement correct judgement if expression expr true suite else expr false suitetemp input ...

Python基礎02 條件語句,迴圈語句

while else迴圈 當while迴圈正常執行完的情況下,執行else輸出,如果while迴圈中執行了跳出迴圈的語句,比如 break,將不執行else 塊的內容。for else迴圈 當for迴圈正常執行完的情況下,執行else輸出,如果for迴圈中執行了跳出迴圈的語句,比如 break,將不...

Python 02條件語句 迴圈語句

學習參考文件 一 條件語句 1.if語句 if 1 print 2.if else語句 a int input please input an interger if a 80 print a else print b 3.if elif else if a 80 print a elif a 70...