• 2022-06-03
    设a = True ,b = True ,c = False,以下表达式值为False的是()
    A: a or b or c   
    B: (not a or b )and( b or c )
    C: False or not a and b or not c  
    D: not a and not b and (12 in [1..10] )