下面代码的输出结果是()。def hello_world():print(‘ST’,end =”*”)def three_hellos():for i in range(3):hello_world(
5 查阅
下面代码的输出结果是()。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.***
参考答案: