以下代码的运行结果为( )。
for i in range(10):
if i == 5:
break
print(i, end="")
A.12345678910
B.0123456789
C.01234
D.012345
出自:国家开放大学Python程序设计