import time
def threedot():
time.sleep(0.5)
print '.',
time.sleep(0.5)
print '.',
time.sleep(0.5)
print '.'
threedot()
运行上述代码时,解释器等待 1.5 秒,然后打印 '. . '; 而不是在打印 '.' 之间等待 0.5 秒。为什么是这样?(在 python 2.7.3 上)
import time
def threedot():
time.sleep(0.5)
print '.',
time.sleep(0.5)
print '.',
time.sleep(0.5)
print '.'
threedot()
运行上述代码时,解释器等待 1.5 秒,然后打印 '. . '; 而不是在打印 '.' 之间等待 0.5 秒。为什么是这样?(在 python 2.7.3 上)