下面代码的输出结果是( )
Def hello_world():

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

A.STSTST*

B.ST*

C.STST

D.***

正确答案是A