我對Python很新,我想知道是否有一種簡潔的方式來測試值是否是列表中的值之一,類似於SQL WHERE條款。對不起,如果這是一個基本的問題。檢查變量是否在列表中
MsUpdate.UpdateClassificationTitle in (
'Critical Updates',
'Feature Packs',
'Security Updates',
'Tools',
'Update Rollups',
'Updates',
)
即,我想寫:
if MsUpdate.UpdateClassificationTitle in (
'Critical Updates',
'Feature Packs',
'Security Updates',
'Tools',
'Update Rollups',
'Updates'
):
then_do_something()
是,做到這一點,除了使用正確的語法列表。 – Marcin
是Python元組還是SQL集?因爲它不是Python列表。 – BoltClock
分別將'('和')'更改爲'['和']'。 :) –