print sep =''在Python 2.7.8中不起作用

时间:2015-06-27 14:06:20

标签: python string python-2.7

作为试用版,我在Python 2.7.8中使用了以下代码:

print 'one', 'two', 'three', sep =''

我收到的消息是

  

SyntaxError:语法无效

我想要的输出是

  

onetwothree

1 个答案:

答案 0 :(得分:2)

print()函数是Python 3的一个功能,但您可以在Python 2上获得它,如此

>>> from __future__ import print_function
>>> print('one', 'two', 'three', sep='')
onetwothree