zoukankan      html  css  js  c++  java
  • if语句

    1,单 if 条件满足:
      if 条件:
      缩进 结果 

    name = "张浩"
    input_name=input("Input your name :")
    if input_name == name:
    print("Same name to me !")

    2,2条件满足其中一个条件:if  else

      if 条件:

      缩进 结果
      else:
      缩进 结果 

    name = "张浩"
    input_name=input("Input your name :")
    if input_name == name:
    print("Same name to me !")
    else:
    print("Different name to me !")

    3,多条件满足一个或都不符合 if elif elif elif

    • if 条件:

      缩进 结果

      elif 条件:

      缩进 结果

      elif 条件:

      缩进 结果

    name1 = "张浩"
    name2 = "Jack"
    name3 = "Brows"
    input_name=input("Input your name :")
    if input_name == name1:
    print("Same name to me !")
    elif input_name == name2:
    print("My bestfriend !")
    elif input_name == name3:
    print("My best friend's girlfriend !")

    4,多条件符合一个 if elif elif else

    • if 条件:

      缩进 结果

      elif 条件:

      缩进 结果

      elif 条件:

      缩进 结果

      else :

      缩进 结果

    name1 = "张浩"
    name2 = "Jack"
    name3 = "Brows"
    input_name=input("Input your name :")
    if input_name == name1:
    print("Same name to me !")
    elif input_name == name2:
    print("My bestfriend !")
    elif input_name == name3:
    print("My best friend's girlfriend !")
    else:
    print("I do not know you !")

    5,if 嵌套

    • if 条件:

      缩进 结果

      if 条件:

      缩进 结果

    your_score = int(input("Input your score :"))
    if your_score > 90:
    print("You are great !")
    if your_score == 100:
    print("You are No.1 !")
    else:
    print("Come on ,you can be No.1 next !")
    else:
    print("You need to study hard !")

     

      

      




  • 相关阅读:
    Live2d Test Env
    Live2d Test Env
    Spring Boot GraphQL 实战 02_增删改查和自定义标量
    Spring Boot GraphQL 实战 01_快速入门
    【MacBook】 SSH使用
    一个神奇的没有springboot注释的api文档生成器---JApiDocs
    Spring Cloud Alibaba 06:Gateway服务网关
    leetcode-300. 最长递增子序列
    leetcode-309. 最佳买卖股票时机含冷冻期
    leetcode-121. 买卖股票的最佳时机
  • 原文地址:https://www.cnblogs.com/zzzhao/p/11334157.html
Copyright © 2011-2022 走看看