下面代码的输出结果是 def hello_world(): print(’ST’,end=’’*’’) def three_hellos(): for i in range(3): hello_world() three_hellos()

admin2019-09-02  22

问题 下面代码的输出结果是
def hello_world():
print(’ST’,end=’’*’’)
def three_hellos():
for i in range(3):
hello_world()
three_hellos()

选项 A、ST*ST*ST*
B、ST*ST*
C、ST*
D、***

答案A

解析
转载请注明原文地址:https://kaotiyun.com/show/7J6p777K
0

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