从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
有什么更好的解决方案吗?
天涯尽头无女友
相关分类