今日は if と else の学習、およびインデントの重要性について学びました!
学習記録
- 今日は if と else を学びました。これは条件分岐文です。意味は、もし(条件が真であれば)こちらを実行し、そうでなければこちらを実行するということです。"==" は両側の内容が等しいかどうかを意味します。
- if の条件は二重イコールであり、単一イコールは代入を意味します。
- if の条件の後と else の後にはコロンを追加する必要があることに注意してください。
- if と else の後の文はインデントする必要があります。正確には、コロンの次の行をインデントする必要があります。
CODE
sp=input("Do you like 'hanging aroud'?:" )
if sp == "NO":
print("Then you're not Spider-man")
else:
print("Yor are Spider-man")
korg=input("Do you have a 'gravelly' voice?: ")
if korg=="NO":
print("Aww, then you're not korg")
else:
print("You are krog")
mar=input("Do you often feel 'Marvelous'?: ")
if mar=="NO":
print("Then you are not Caption Marver")
else:
print("Aha! You're Caption Marver! Hi!")