以下代码的输出结果是( )。 for s in"PythonNice!": if s=="i": break print(s,end="")

admin2021-03-16  22

问题 以下代码的输出结果是(    )。
for s in"PythonNice!":
   if s=="i":
      break
   print(s,end="")

选项 A、Python
B、PythonN
C、PythonNi
D、PythonNice

答案B

解析 for循环遍历字符串,将字符串中的字符依次赋值给变量s,当s==i的时候,跳出该循环,输出之前变量s被赋值的字符,所以输出为PythonN。本题选择B选项。
转载请注明原文地址:https://kaotiyun.com/show/zY6p777K
0

相关试题推荐
最新回复(0)