elif は else if の略です。 else ステートメントと elif ステートメントは、独立して使用できないため、句と呼ぶこともできます。どちらも if、for、while ステートメント内に現れます。 else 節は選択肢を追加できます。elif 節は、より多くの条件をチェックする必要がある場合に使用され、if および else と一緒に使用されます。
例:
people = 30 cars = 40 buses = 15 if cars > people: print( "We should take the cars.") elif cars < people: print ("We should not take the cars.") else: print ("We can't dicide.") if buses > cars: print ("That's too many buses.") elif buses < cars: print ("Maybe we could take the buses.") else: print ("We still can't decide.") if people > buses: print ("Alright, let's just take the buses.") else: print ("Fine, let's stay home then.")
実行結果:
Python 関連の技術記事の詳細については、Python チュートリアル をご覧ください。学びのコラム!
以上がPythonのエリフとはどういう意味ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。