时间:2021-07-01 10:21:17 帮助过:73人阅读
import sys
sys.stdout.write('.')
# 在 python 2.x 下用 python 3 的 print
from __future__ import print_function
print('.', end='')
# ps. 这种写法并不是正确的,会在末尾多一个空格
print '.',
print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)
在末尾加一个 逗号 就可以了。