x=True y=False z=False ifxoryandz: print("yes") else: print("no") 以上代码输出结果为?
A: yes
B: no
C: 编译出错
D: None
A: yes
B: no
C: 编译出错
D: None
举一反三
- python3.x语句: x,y,z=True,False,False if z or y and x: print("yes") else: print("no") 的输出结果为____________。
- if True or False and False:print('yes')else:print('no')上述代码输出结果是____。
- 下列Python语句的输出结果是________。x=False;y=True;z=Falseif x or y and z:print("yes")else:print("no")
- 下面代码的输出结果是()。i=1if i: print(True)else: print(False) A: 1 B: True C: False D: 编译错误
- 以下代码段,运行结果正确的是哪一项?x=2if x: print(True)else: print(False) A: True B: False C: 运行异常 D: 以上结果都不对