Python 條件測試

2021-08-21 01:49:38 字數 1058 閱讀 4756

1. 基本用法

# _*_ coding:utf8 _*_

# 條件測試

cars = ['ad', 'bm', 'bc', 'fll']

for car in cars:

if car == 'ad':

print(car.upper())

else:

print(car.title())

# 賦值

car = 'ad'

# 判斷 為真輸出true 為假輸出false

print(car == 'ad')

car = 'bm'

print(car == 'bb')

car = 'bm'

print(car == 'bm')

print(car.lower() == 'bm')

if car != 'bm':

print("this is my option")

# 比較數字

number = 14

print(number >= 15)

# 多條件檢查 and or

age_0 = 19

age_1 = 20

# false

print(age_0 >= 20 and age_1 >= 20)

# true

print(age_0 >= 20 or age_1 >= 20)

# 檢查特定值是否包含在列表中 使用關鍵字 in

students = ['zhangqi','qiyongshuai','chengjian','renhengyao']

print('zhangqi' in students)

print('zhanglu' in students)

# 檢查特定值是否不包含在列表中 關鍵字為 not in

banned_users = ['lb','dp','tym','mhr']

user = 'zq'

if user not in banned_users:

print("hello")

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...

shell條件測試

shell條件測試通常都會用在for while until if等控制流結構中,用於判斷檔案的相關性質或變數的相互關係。條件測試用法 test 表示式 結果 成立返回0,不成立返回非0 檢視結果 echo 以下是幾類常用的測試表示式 1 檔案狀態測試 b filename 當filename 存在...

shell條件測試

shell條件測試 檔案狀態測試 b filename 當filename 存在並且是塊檔案時返回真 返回0 c filename 當filename 存在並且是字元檔案時返回真 d pathname 當pathname 存在並且是乙個目錄時返回真 e pathname 當由pathname 指定的...