今天学习了 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!")