如何实时获取返回数据?
问题已解决。
python的print(obj)实际上是调用sys.stdout.write(obj+’\n’),将print()中内容打印出来,并且追加了一个'\n'换行符号。
举例说明: print("hello world) => 等价于 sys.stdout.write("hello world\n"),
解决办法:
调用sys.stdout.flush()强制其“缓冲,强制缓冲的数据输出到终端。
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有