我使用python的print()函数的sep,file,(etc)参数有一个奇怪的错误.
我试图谷歌出来,dag在stackoverflow附近,并阅读python’s documentation但我没有想到什么.
我附上了一个简单的片段,我会非常感谢任何帮助.
# python
Python 2.7.2 (default,Aug 19 2011,20:41:43) [GCC] on linux2
Type "help","copyright","credits" or "license" for more information.
>>> print("blah"*10,sep=" | ")
File "SyntaxError: invalid Syntax
最佳答案
尝试:
原文链接:https://www.f2er.com/linux/440620.htmlfrom __future__ import print_function
第一