30秒学会 Python 片段 · 2022年3月7日

30秒学会 Python 片段 – Check if list elements are identical

Checks if all elements in a list are equal.

  • Use set() to eliminate duplicate elements and then use len() to check if length is 1.

代码实现

def all_equal(lst):
  return len(set(lst)) == 1

使用样例

all_equal([1, 2, 3, 4, 5, 6]) # False
all_equal([1, 1, 1, 1]) # True

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