已知x=10;y=20;z=2,下面正确的Python语句是()。
A: min=x
if x
B: if(x>y)
print x
C: while
True: pass
D: max=max(x,y,z)
A: min=x
if x
B: if(x>y)
print x
C: while
True: pass
D: max=max(x,y,z)
举一反三
- 以下选项符合 Python语法要求且能够正确执行的是( ). A: min<br/>= x if x B: if(x>y)print<br/>x C: while<br/>True:pass D: max<br/>=x>y?x: y
- 下列Python语句正确的是( ) A: min = x if x B: max = x > y and x : y C: if(x > y) print(x) D: while true: pass
- 下列Python语句正确的是( ) A: while true : pass B: if (x>y) print(x) C: min = x if x < y else y D: max = x > y ? x : y
- 以下哪个Python语句是正确的(). A: min = x if x < y = y B: max = x > y ? x : y C: if(x > y)print x D: while Ture : pass
- 下列函数定义不正确的是( )。 A: int<br/>max(){int x,y,z;z=x>y?x:y;} B: int max(x,y)int x,y;{ int z;z=x>y?x:y;return(z);} C: int max(x,y){int x,y,z;z=x>y?x:y;return(z);} D: int max(){ }