例如,我有一串 HTML 有序列表。在该有序列表中,我想写 n 个列表。如何完成将列表添加到此字符串的任务?
这是示例代码:
html = """
<ol>
<li>
<!--Something-->
</li>
... <!--n lists-->
{} #str().format()
<li>
<!--Something-->
</li>
</ol>
"""
for li in html_lists: #where li is <li>...</li> and is inside the python list.
html.format(li)
据我所知,字符串是不可变的,并且.format()
会<li>
在{}
. 因此,这对一个以上不起作用<li>
。