根据开头和结尾字符python在列表中追加行

时间:2018-04-26 01:05:34

标签: python string-concatenation

我有一个列表,其中包含以不同单词结尾的句子。

我想实现以下目标:

  1. 如果某行以<p>开头和结尾,请附加到新列表
  2. 如果行以<p>开头,但不以<p>结尾,请附加到临时字符串并检查下一行。如果下一行没有以<p>结尾,请将其附加到临时字符串,直到找到以<p>结尾的行
  3. 刷新临时字符串并重复步骤1和2.
  4. 工作清单:

    ['<p>University Press, Inc.',
    'The Game of Hearts: Harriette Wilson &amp; Her Memoirs edited by Lesley Blanch. Copyright © 1955 by<p>',
    '<p>7<p>',
    '<p>Acknowledgments<p>',
    '<p>First, I would like to thank Anna Biller for her countless contributions to',
    'this book: the research, the many discussions, her invaluable help with the',
    'text itself, and, last but not least, her knowledge of the art of seduction, of',
    'which I have been the happy victim on numerous occasions.<p>',
    '<p>To the memory of my father<p>',
    '<p>8<p>',
    '<p>I must thank my mother, Laurette, for supporting me so steadfastly',
    'throughout this project and for being my most devoted fan.`<p>`',
    '<p>I would like to thank Catherine Léouzon, who some years ago intro-',
    'duced me to Les Liaisons Dangereuses and the world of Valmont.<p>']
    

    工作代码:

    itext = []
    tempS = ''
    for i in range(len(gtext)):
        if gtext[i][:3] == '<p>' and gtext[i][-3:] == '<p>':
            itext.append(gtext[i])
        elif gtext[i][:3] == '<p>' and gtext[i][-3:] != '<p>':
            tempS += gtext[i]
            if gtext[i+1][-3:] != '<p>':
                tempS += ' ' + gtext[i+1]
                if gtext[i+1][-3:] == '<p>':
                    tempS += ' ' + gtext[i+1]
                    itext.append(tempS)
                    tempS = ''
    

    预期结果:

    ['<p>University Press, Inc. The Game of Hearts: Harriette Wilson &amp; Her Memoirs edited by Lesley Blanch. Copyright © 1955 by<p>',
    '<p>7<p>',
    '<p>Acknowledgments<p>',
    '<p>First, I would like to thank Anna Biller for her countless contributions to this book: the research, the many discussions, her invaluable help with the text itself, and, last but not least, her knowledge of the art of seduction, of which I have been the happy victim on numerous occasions.<p>',
    '<p>To the memory of my father<p>',
    '<p>8<p>',
    '<p>I must thank my mother, Laurette, for supporting me so steadfastly throughout this project and for being my most devoted fan.`<p>`',
    '<p>I would like to thank Catherine Léouzon, who some years ago intro-duced me to Les Liaisons Dangereuses and the world of Valmont.<p>']
    

    我知道这很简单,看起来很容易,但我的时间很短,我需要快速修复。感谢

2 个答案:

答案 0 :(得分:3)

从列表开始,根据条件追加或连接。不需要临时字符串:

workingList = ... #assume its a list of strings. If its not just split it by newlines.
result = []
for i in workingList:
    if '<p>' == i[:3]: result.append(i) #start new if <p> found as start
    else: result[-1] += ' ' + i #add it to the end of the last one

for i in result:
    print(i)

运行代码时会得到这些结果:

<p>University Press, Inc.The Game of Hearts: Harriette Wilson &amp; Her Memoirs edited by Lesley Blanch. Copyright © 1955 by<p>
<p>7<p>
<p>Acknowledgments<p>
<p>First, I would like to thank Anna Biller for her countless contributions tothis book: the research, the many discussions, her invaluable help with thetext itself, and, last but not least, her knowledge of the art of seduction, ofwhich I have been the happy victim on numerous occasions.<p>
<p>To the memory of my father<p>
<p>8<p>
<p>I must thank my mother, Laurette, for supporting me so steadfastlythroughout this project and for being my most devoted fan.`<p>`
<p>I would like to thank Catherine Léouzon, who some years ago intro-duced me to Les Liaisons Dangereuses and the world of Valmont.<p>

答案 1 :(得分:1)

这也可以通过itertools.groupby完成:

from itertools import groupby

output = []

for test, lines in groupby(gtext, lambda x: x.startswith('<p>') and x.endswith('<p>')):
    if not test:
        output.append(' '.join(list(lines)))
    else:
        output.extend(list(lines))

for line in output:
    print line
# <p>University Press, Inc. The Game of Hearts: Harriette Wilson &amp; Her Memoirs edited by Lesley Blanch. Copyright © 1955 by<p>
# <p>7<p>
# <p>Acknowledgments<p>
# <p>First, I would like to thank Anna Biller for her countless contributions to this book: the research, the many discussions, her invaluable help with the text itself, and, last but not least, her knowledge of the art of seduction, of which I have been the happy victim on numerous occasions.<p>
# <p>To the memory of my father<p>
# <p>8<p>
# <p>I must thank my mother, Laurette, for supporting me so steadfastly throughout this project and for being my most devoted fan.`<p>` <p>I would like to thank Catherine Léouzon, who some years ago intro- duced me to Les Liaisons Dangereuses and the world of Valmont.<p>