标签: python python-2.7 variables
py 2.7 当我调用a.write()时,我想在我的字符串中添加一个新行 问题是,背景是一个变量。 所以,当我写作
a.write(x,"/n")
它给了我错误因为我不能在()中放入多于1个参数。 有什么建议吗?
答案 0 :(得分:3)
有很多方法可以做到这一点
a.write(x+"\n")
a.write('{}\n'.format(x)
a.write('%s\n'%(x))
注意 - \n是换行符而非/n
\n
/n