作为试用版,我在Python 2.7.8中使用了以下代码:
print 'one', 'two', 'three', sep =''
我收到的消息是
SyntaxError:语法无效
我想要的输出是
onetwothree
答案 0 :(得分:2)
print()
函数是Python 3的一个功能,但您可以在Python 2上获得它,如此
>>> from __future__ import print_function
>>> print('one', 'two', 'three', sep='')
onetwothree