标签: python
a="Python" b="Learn Python" print(a,"\n",b)
输出:
Python Learn Python
为什么输出换行符有空格 如何避免这种情况,我不需要空格。我的代码有什么不对,请帮帮我
Python 3.6.0