Files
30-seconds-of-code/snippets/python/s/cast-list.md
2023-05-07 16:07:29 +03:00

528 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Cast to list snippet python
list
colorful-pots 2020-11-02T19:27:07+02:00

Casts the provided value as a list if it's not one.

  • Use isinstance() to check if the given value is enumerable.
  • Return it by using list() or encapsulated in a list accordingly.
def cast_list(val):
  return list(val) if isinstance(val, (tuple, list, set, dict)) else [val]
cast_list('foo') # ['foo']
cast_list([1]) # [1]
cast_list(('foo', 'bar')) # ['foo', 'bar']