使用set()从列表中删除重复项,而不对列表进行排序

时间:2019-07-01 14:10:41

标签: python list set

所以我想做的就是这样:

例如:

GET

我想要得到的是以下内容:

data = ["hello", "there", "how", "are", "you", "hello", "there", "am", "fine"]

删除重复项但列表无序的地方 我得到的:

["hello", "there", "how", "are", "you", "am", "fine"]

我希望删除重复项,但列表/集合没有顺序。

谢谢。

0 个答案:

没有答案