Files
30-seconds-of-code/snippets/all_equal.md
2020-10-11 13:36:53 +03:00

322 B

title, tags
title tags
all_equal list,beginner

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