Pythonを勉強しはじめたプログラミング初心者です。
次のコード?の中で、ifの段落の前のところで、「living_within_means = False」と入れるのはなぜなのでしょうか?
入れなくても、実行結果は変わらないようです。
salary = 1000 expenses = 700 living_within_means = False if salary - expense > 0: living_within_means = True print("Am I living within my means?", living_within_means)
実行結果
Am I living within my means? True
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/18 04:56