从python中的列表中获取唯一值我想从以下列表中获得唯一值:[u'nowplaying', u'PBS', u'PBS', u'nowplaying', u'job', u'debate', u'thenandnow']我需要的产出是:[u'nowplaying', u'PBS', u'job', u'debate', u'thenandnow']此代码适用于:output = []for x in trends:
if x not in output:
output.append(x)print output有什么更好的解决方案吗?
添加回答
举报
0/150
提交
取消