IF條件控制

2022-09-06 00:57:08 字數 1931 閱讀 9722

python 條件語句是通過一條或多條語句的執行結果(true 或者 false)來決定執行的**塊。

如下圖所示

python區分大小寫

>>> s = '

upper

'>>> s == '

upper

'false

>>> s.lower() == '

upper

'true

邏輯判斷

表示式描述

a == b

a等於b

a != b

a不等於b

a > b

a大於b

a >= b

a大於等於b

a is b

a和b 是同乙個物件

a is not b

a和b不是同乙個物件

a in a

a在a中

a not in a

a不在a中

邏輯為假的情況

假(false)

真(true)

false

true

none

not none

0not 0

''(空)

not ''

(空字典)

字典中有元素

()(空元組)

元組中有元素

{}(空字典)

字典中有元素

set()

集合中有元素

if

if -  else

if - elif - else

if -elif

if - elif - elif

n = 10

if n >0:

print("

%d is 正數

" %(n) )

elif n <0:

print("

%d is 負數

" %(n) )

else

:

print("

%d is 零

" %(n)

if 語句中巢狀if語句

n = -10.3

if n >0:

if n % 1 ==0:

print("

%.1f is 正整數

" %(n) )

else

:

print("

%.1f is 正小數

" %(n) )

elif n <0:

if n % 1 ==0:

print("

%.1f is 負整數

" %(n) )

else

:

print("

%.1f is 負小數

" %(n) )

else

:

print("

%f is 零

" %(n) )

#out:-10.3 is 負小數

python條件 Python 條件控制

python 條件控制 if 語句 python中if語句的一般形式如下所示 if condition 1 statement block 1 elif condition 2 statement block 2 else statement block 3 如果 condition 1 為 tru...

PLSQL條件控制

if條件控制語句 declare sal number 500 comm number begin if sal 100 then comm 0 elsif sal 600 then comm sal 0.1 elsif sal 1000 then comm sal 0.2 else comm sa...

Python條件控制

if 語句 python中if語句的一般形式如下所示 if condition 1 statement block 1 elif condition 2 statement block 2 else statement block 3 如果 condition 1 為 true 將執行 statem...