📜  python 2 print sep end - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:57.300000             🧑  作者: Mango

代码示例1
>>> from __future__ import print_function
>>> print('one', 'two', 'three', sep='')
onetwothree
#doesn't work for me, but still hope it might work for you :)