print()变元end,sep
print('hello',end='') print('world')
helloworld
>>> print('cat','dog','cow') cat dog cow >>> print('cat','dog','cow',sep=',') cat,dog,cow
print('hello',end='') print('world')
helloworld
>>> print('cat','dog','cow') cat dog cow >>> print('cat','dog','cow',sep=',') cat,dog,cow