判別式
在各種情況中,我們可能會需要判斷各種情況,因此這時候就會需要使用 if else 來協助程式判斷各種情況
input = "字串"
if input == "字串":
print(True)
else:
print(False)
#True
input = 1111
if input % 3 == 0:
print(True)
elif input % 11 == 0:
print(False)
else:
print("沒有匹配得結果")
#False
以上就是基本的if elif else的基本使用教學
而 elif 其實就是else if的縮寫在Python中使用elif 來代表else if 的用法