def greet(name): print('hello',name)
greet('lzs')
如何换行?输出要是这种效果hellolzs
改成这两种都可以print('hello\n'+name)或print('hello')print(name)
print('hello\n',name)