运行以下Python中表达式后,X的值为是x=3==3,5A.3B.5C.(True,5)D.(False,5)
运行以下Python中表达式后,X的值为是x=3==3,5
A.3
B.5
C.(True,5)
D.(False,5)
相关考题:
下列 Python语句的运行结果为:________ x= False; y= True; z= False if x or y and z: print("yes") else: print("no")
以下python表达式返回值为True的是()。 A.3 and 1 or 4 B. not 0 C. 3<4>5 D. 1 not in [1,2,3]