Python拆分列表

时间:2017-01-11 18:48:54

标签: python string list

我尝试将列表拆分为特定字符。我试过的代码:

lol = ['lol&sa=asddaa', 'test&sa=asd', 'well&sa=123123']
test = "\n".join(lol)

for x in test:
    print test.split("&sa")[0]

但这不起作用。我只是输了“lol”一百次。可能是什么解决方案?

我想要的输出:

lol
test
well

以便它在“& sa”分裂

1 个答案:

答案 0 :(得分:0)

我想这就是你的意思:

for x in lol:
    print x.split("&sa")[0]

输出:

lol
test
well