什么是Pythonic在多行中编写单行文本的方法

时间:2017-09-13 03:16:22

标签: python

我需要在python脚本中打印一个长的const句子,然后我们按照"不超过80个字符一行"规则。

我知道以下内容可行,但是有更好的方法来写这个吗?

print ("This is a reaaaaaaaaaaaaaaaaaaaaaaaally long "
       "sentencexxxxxxxxxxxxxxxxxxxxxxxxxxxx").format("")

,或者

print ("This is a reaaaaaaaaaaaaaaaaaaaaaaaally long " +
        "sentencexxxxxxxxxxxxxxxxxxxxxxxxxxxx")

或者,如果其中一个比另一个更好。

编辑:为了更清楚,预期的输出是,

This is a reaaaaaaaaaaaaaaaaaaaaaaaally long sentencexxxxxxxxxxxxxxxxxxxxxxxxxxxx

1 个答案:

答案 0 :(得分:2)

我认为这是一种更好的方式:

auth code

实际上,你不需要连接字符串。