python-一个小练习
Posted 不会起名字
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-一个小练习相关的知识,希望对你有一定的参考价值。
myseq = ‘‘‘[a:1,b:2,c:3] [a:3,b:3,c:8] [a:7,c:2:m:7,r:4] [a:2,c:4:m:6,r:4] [a:3,b:2,c:7,o:5]‘‘‘ def eve(i): evest=‘‘ for x in [y for y in range(len(i)) if y % 2 == 0]: evest+=i[x] return evest myseq=myseq.split(‘\n‘) lt=[] for i in myseq: lt.append(eve(i.replace(‘[‘,‘‘).replace(‘]‘,‘‘).replace(‘:‘,‘‘).replace(‘,‘,‘‘))) l1,l2=[],[] for i in range(len(lt)): if not lt[i] in l2: l2.append(lt[i]) l1.append(myseq[i]) print(l1)
以上是关于python-一个小练习的主要内容,如果未能解决你的问题,请参考以下文章