我刚刚阅读了Python脚本的最佳实践。我发现建议的长度不应超过每行80个字符。
所以在我的脚本中存在超过100个字符。
我打破了界限,以下是例子。
示例1
self.remote_conn_pre.connect("self.hostname, "
"username=self.username, password=self.password, "
"look_for_keys=False, allow_agent=False")
示例2
self.remote_conn.send(""create bigdata\n" "
" .format(pending.upper(), (total) + 9)")
示例3
print ("This is the first line of my text {} "
"which will be joined to a second {}.".format(a,b))
如果我做错了什么,请任何人纠正我,并帮助我确定将长线分成小线的最佳方法。
答案 0 :(得分:2)
您可以使用文档字符串并转义换行符。
print ("""
This is the first line of my text {} \
which will be joined to a second {}.
""").format(a,b)
答案 1 :(得分:0)
Python支持使用反斜杠\
字符拆分行,如下所示:
d = "one two three " \
"four five six"
print d
打印one two three four five six