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