从 python 中的列表中获取唯一值
我想从以下列表中获取唯一值:
['nowplaying', 'PBS', 'PBS', 'nowplaying', 'job', 'debate', 'thenandnow']
我需要的输出是:
['nowplaying', 'PBS', 'job', 'debate', 'thenandnow']
此代码的工作原理:
output = []
for x in trends:
if x not in output:
output.append(x)
print(output)
有没有我应该使用的更好的解决方案?