为什么从__future__ import print_function使用会破坏Python2样式的打印?[关闭]
关闭。这个问题不能重现或由错别字引起。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow 的主题。 4年前关闭。 改善这个问题 我是使用python编程的新手,但我尝试使用分隔符并结束打印,但这仍然给我带来语法错误。 我正在使用python 2.7。 这是我的代码: from __future__ import print_function import sys, os, time for x in range(0,10): print x, sep=' ', end='' time.sleep(1) 这是错误: $ python2 xy.py File "xy.py", line 5 print x, sep=' ', end='' ^ SyntaxError: invalid syntax $