if instanceType == instance_type and operatingSystem == operating_system and tenancy == tenancy_db:
sku_list.append(key)
在這個if語句中,這些變量,instanceType,operatingSystem和tenancy是用戶輸入,如何處理不檢查用戶輸入是否爲None。如何處理if語句和python中的運算符?
例如如果instanceType是無,我想檢查
if operatingSystem == operating_system and tenancy == tenancy_db:
sku_list.append(key)
例如,如果operatingSystem是None,我想檢查
if instanceType == instance_type and tenancy == tenancy_db:
sku_list.append(key)
例如,如果兩個租戶和instanceType是無,我想檢查:
if operatingSystem == operating_system:
sku_list.append(key)
Simliarly,這取決於在無或別的東西不管用戶輸入,有沒有其他辦法可以做到這一點,或者我要實現嵌套如果別的?