假设,我想定义一个两行(或多行)字符串。
我可以通过两种方式做到这一点:
\n
"This is the first sentence. \n This is the second sentence."
""" This is the first sentence.
This is the second sentence."""
哪种效率更高或更传统?为什么?
答案 0 :(得分:0)
我很想说它并不重要,因为每个人在解析文本时仍会扫描内部的转义字符。
>>> print "a\n\tb"
a
b
>>> print """a\n\tb"""
a
b