标签: python
使用列表理解
myList=[-2,-1,0,1,2,3,1,2,3] result=[each for each in myList if each>0]
结果:
[1,2,3,1,2,3]
如何避免返回列表中的重复值?