【单选题】请问以下程序代码的运行结果是()。 age = 10 if age >= 18: print("adult") else: print("child") print("end if")
A. adult end if B. child end if C. adult D. child
A. adult end if B. child end if C. adult D. child
举一反三
- 阅读下面的python程序,请问输出结果是什么? Print(“T”,end=’’) if not 0 else print (‘F’,end=’’) Print(“T”,end=’’)if 6 else print (‘F’,end=’’) Print(“T”,end=’’)if””else print(‘F‘,end=’’) Print(“T”,end=’’)if”abc”else print(‘F’,end=’’) Print(“T”,end=’’)if____else print (‘F’,end=’’) Print(“T”,end=’’)if(1,2)else print(‘F’,end=’’) Print(“T”,end=’’)if[ ]else print(‘F’,end=’’) Print(“T”,end=’’)if[1,2]else print(‘F’,end=’’) Print(“T”,end=’’)if{ }else print(‘F’,end=’’) Print(“T”,end=’’)if{1,2}else print(‘F’,end=’’)
- 以下程序的运行结果为:a=15if a>15: print(5,end="")if a>10: print(20,end="")if a>5: print(35,end="")
- 运行如下程序,输出结果是 。 try: x, y = 1, 0 z = x / y print(0, end=",") except: print("1", end=",") else: print("2", end=",") finally: print("3", end=",")
- print("a",end="") print("a",end="")代码结果()
- 下面代码的运行结果是: for i in range(2): print(i, end=') else: print(0)