python输出去掉空格

在输出后面加上sep=' '

a='h'
b='o'
print(a,'ell',b,sep='')

不加sep:

加上sep:

你可能感兴趣的:(python)