在Python中使用IF語句時,必須執行以下操作才能使「級聯」正常工作。使用或與IF語句進行比較
if job == "mechanic" or job == "tech":
print "awesome"
elif job == "tool" or job == "rock":
print "dolt"
有沒有辦法讓Python在檢查「等於」時接受多個值?例如,
if job == "mechanic" or "tech":
print "awesome"
elif job == "tool" or "rock":
print "dolt"
既然您已經接受了答案,那麼爲了完整性,在set()`操作中提及`item也會很好。 – tzot 2008-09-29 16:00:33