プログラミングをしていると、「ある条件の結果に応じて、変数に入れる値を変えたい」という場面は頻繁に訪れます。 「会員ランクがゴールドなら送料は0円、そうでなければ500円」 「点数が合格点以上なら"合格"、そうでなければ"不合格"」 通常、これ ...
Imagine you are a calculator 🔢🔣 throughout the post. Come on there is no loss in imagining this. In fact, it will help you understand conditional statements python if-else-elif and will also enable ...
Pythonの例外処理(エラーハンドリング)といえば、tryとexceptが基本です。 「エラーが起きそうな場所をtryで囲んで、exceptでキャッチする」。これだけでプログラムが止まるのを防ぐことができます。 しかし、Pythonの例外処理構文には、あまり知られてい ...
"\"Hey if this case happens, perform some action. Else, if another case happens, perform some other action. Else, if *none* of the above cases happened, perform this action.\"\n", ...