-1
當我在codecademy上使用python時,那裏的教程使用if():statement和else():語句。但有時它使用if():then elif():語句。我不明白你什麼時候想把它們切換出來或先用哪個。什麼時候使用if else else或python中的elif
def fruit_color(fruit):
if fruit == "apple":
return "red"
elif fruit == "banana":
return "yellow"
elif fruit == "pear":
return "green"
建議您查看文檔中的[Control Flow Tools](https://docs.python.org/3.4//tutorial/controlflow.html)。 – miradulo
如果你有更多的2個可能的狀態你想檢查,很容易 –
我不明白你的問題。 – melpomene