在 cygwin Python 脚本中睡眠打印不打印输出

在 cygwin Python 脚本中睡眠打印不打印输出

我正在使用 cygwin 运行一个使用 while 循环的 python 脚本并time.sleep()显示输出。如果我time.sleep()从循环内部排除,cygwin 终端将按预期显示输出。当我使用time.sleep()函数时,它不显示任何输出。

import time
while True:
      print "hello world"

这个例子可以在没有time.sleep()

import time
while True:
    print "hello world"
    time.sleep(1)

此代码不会在 cygwin 终端中显示任何输出。

相关内容