我想从以下列表中获取唯一值:
['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)
我应该使用更好的解决方案吗?