默认是换行的

print('这是第一行print信息',end='')

print('hello')

添加end=''  打印信息不换行

 

同时打印多行  print('ni','hello','123')