前提是前面有一个dict 然后我想输出两行东西 在print里面用了换行符就错了 求问各位错误在哪 怎么改?
1 回答
已采纳
pardon110
TA贡献1038条经验 获得超227个赞
\n是转义字符,不可见,需要用双引号包围,如下所示
Python 2.7.15 (v2.7.15:ca079a3ea3, Apr 30 2018, 16:30:26) [MSC v.1500 64 bit (AMD64)] on win32Type "help", "copyright", "credits" or "license" for more information. >>> print 'a',"\n",'b' a b >>>
添加回答
举报
0/150
提交
取消