30秒学会 Python 片段 · 2023年2月10日

30秒学会 Python 片段 – Check if list has no duplicates

Checks if all the values in a list are unique.

  • Use set() on the given list to keep only unique occurrences.
  • Use len() to compare the length of the unique values to the original list.

代码实现

def all_unique(lst):
  return len(lst) == len(set(lst))

使用样例

x = [1, 2, 3, 4, 5, 6]
y = [1, 2, 2, 3, 4, 5]
all_unique(x) # True
all_unique(y) # False

翻译自:https://www.30secondsofcode.org/python/s/all-unique