详解Python3 定义一个跨越多行的字符串的多种方法
程序员文章站
2022-03-04 22:59:52
方法一:使用三引号>>> str1 = '''le vent se lève, il faut tenter de vivre. 起风了,唯有努力生存。(纵有疾风起,人生不言弃。)'...
方法一:使用三引号
>>> str1 = '''le vent se lève, il faut tenter de vivre. 起风了,唯有努力生存。 (纵有疾风起,人生不言弃。)''' >>> str1 'le vent se lève, il faut tenter de vivre. \n起风了,唯有努力生存。\n(纵有疾风起,人生不言弃。)' >>> print(str1) le vent se lève, il faut tenter de vivre. 起风了,唯有努力生存。 (纵有疾风起,人生不言弃。)
编辑的时候,引号挺对的,但是不知道为什么发布的时候,第一行的引号总是多了一些,其实应该是下面这样的:
此种情况适用于想要多行表示某一多行字符串,实质上字符串是多行。
再举一个例子
>>> """ <div class="authorinfo-content"> <div class="authorinfo-head"> <span class="userlink authorinfo-name"> <div class="popover"> <div id="popover222-toggle" aria-haspopup="true" aria-expanded="false" aria-owns="popover222-content"> 作者:<a class="userlink-link" data-za-detail-view-element_name="user" target="_blank" href="{0}" rel="external nofollow" rel="external nofollow" >{1}</a> </div> </div> </span> </div> <div class="authorinfo-detail"> <div class="authorinfo-badge"> <div class="authorinfo-badgetext"> 签名:{2} </div> </div> </div> </div> <br/> """.format("https://*.com/questions/45624449", "using python variables in html in multiline python string", "123")
再举一个用 f-string 格式化的例子,参考
>>> """ <div class="authorinfo-content"> <div class="authorinfo-head"> <span class="userlink authorinfo-name"> <div class="popover"> <div id="popover222-toggle" aria-haspopup="true" aria-expanded="false" aria-owns="popover222-content"> 作者:<a class="userlink-link" data-za-detail-view-element_name="user" target="_blank" href="{0}" rel="external nofollow" rel="external nofollow" >{1}</a> </div> </div> </span> </div> <div class="authorinfo-detail"> <div class="authorinfo-badge"> <div class="authorinfo-badgetext"> 签名:{2} </div> </div> </div> </div> <br/> """.format("https://*.com/questions/45624449", "using python variables in html in multiline python string", "123")
下面的两种方法主要适用于一个长字符串一行表示不下,多行表示更为美观,实质上字符串还是一行。
方法二:使用反斜杠
>>> name = "eric" >>> profession = "comedian" >>> affiliation = "monty python" >>> message = f""" ... hi {name}. ... you are a {profession}. ... you were in {affiliation}. ... """ ... >>> message '\n hi eric.\n you are a comedian.\n you were in monty python.\n'
方法三:使用小括号
>>> str3 = ('le vent se lève, il faut tenter de vivre.' '起风了,唯有努力生存。' '(纵有疾风起,人生不言弃。)') >>> str3 'le vent se lève, il faut tenter de vivre.起风了,唯有努力生存。(纵有疾风起,人生不言弃。)'
到此这篇关于详解python3 定义一个跨越多行的字符串的多种方法的文章就介绍到这了,更多相关python3 跨越多行的字符串内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!