运行这段代码,终端区会打印什么内容?( )
for i in range(10):
if i > 5:
print(i, end='')
12345678910
0123456789
56789
6789