python三个条件并列 python if条件并列_if语句

python三个条件并列 python if条件并列_用户名_02

python三个条件并列 python if条件并列_if语句_03

2. if语句_and、or、not运算规则

 

  1. """
  2.  
    if语句练习
  3.  
    if 语句 and or not 规则运算:
  4.  
    if 多个条件:
  5.  
    and 并列
  6.  
    x and y
  7.  
    or 或者
  8.  
    x or y
  9.  
    not 非
  10.  
    not x
  11.   
  12.  
    """
  13.  
    """
  14.  
    if语句练习
  15.  
    if 语句 and or not 规则运算:
  16.  
    if 多个条件:
  17.  
    and 并列
  18.  
    x and y
  19.  
    or 或者
  20.  
    x or y
  21.  
    not 非
  22.  
    not x
  23.   
  24.  
    """
  25.   
  26.  
    a=10
  27.  
    b=20
  28.  
    ######## and
  29.  
    if a and b:
  30.  
    print("a,b都为真")
  31.  
    else:
  32.  
    print("a,b有一个不为真")
  33.   
  34.  
    ######## or
  35.  
    if a or b:
  36.  
    print("a,b至少有一个为真")
  37.  
    else:
  38.  
    print("a,b都不为真")
  39.  
    ######## not
  40.  
    print("*****************************")
  41.  
    a=0
  42.  
    print("a=0时")
  43.  
    if a and b:
  44.  
    print("a,b都为真")
  45.  
    else:
  46.  
    print("a,b有一个不为真")
  47.  
    if a or b:
  48.  
    print("a,b至少有一个为真")
  49.  
    else:
  50.  
    print("a,b都不为真")
  51.  
    if not(a and b):
  52.  
    print("false")
  53.  
    else:
  54.  
    print("true")

运行结果:

python三个条件并列 python if条件并列_if语句_04

 

python三个条件并列 python if条件并列_用户名_05

 

 

//例:and练习

  1.  
    input_name=input("请输入用户名:")
  2.  
    input_age=input("请输入年龄:")
  3.   
  4.  
    if input_name=="Tom" and input_age=="18":
  5.  
    print("欢迎%s"% input_name)
  6.  
    else:
  7.  
    print("输入错误")

python三个条件并列 python if条件并列_if语句_06

 

1.  a> b and a or b

a>b ------false

false and a   or b

false or b

输出 b

  1.   
  2.  
    a=10
  3.  
    b=20
  4.  
    r=a>b and a or b
  5.  
    print(r)

运算结果:

python三个条件并列 python if条件并列_用户名_07