1、在python 2.x中,在print 'xxxx' 后面加一个逗号print 'hello world',2、python 3.x中,需要在函数内增加一个end字段:print('hello world', end='')