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


下面代码的输出结果是()。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.***

正确答案:ST* ST* ST*


Tag:python 代码 时间:2022-01-13 20:58:52