二手产品经理

二手产品经理

THIS IS RENO

在线学Python100天 - 第五天

今天学习了 if 和 else,以及缩进的重要性!

学习记录

  1. 今天学习 if 和 else,这是一条是判断语句。意思为,如果(条件是真的)就执行这里,否则就执行这里。 "==" 的意思是这两边的内容是否相等。
  2. if 条件是双等号,单等号是赋值。
  3. 注意 if 条件后和 else 后都需要加入冒号
  4. 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!")
加载中...
此文章数据所有权由区块链加密技术和智能合约保障仅归创作者所有。