Python 2.7 print()错误

前端之家收集整理的这篇文章主要介绍了Python 2.7 print()错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我使用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
最佳答案
尝试:

from __future__ import print_function

第一

原文链接:https://www.f2er.com/linux/440620.html

猜你在找的Linux相关文章