list.distinct()
list.unique()
list(set(list))
list.remove_duplicates()
Discuss About this Question.
list.count(element)
list.frequency(element)
dict(Counter(list))
list.freq(element)
Counter
dict()
list.extend([7, 8, 9])
extend()
reversed_list = list.reverse()
reversed_list = list[::-1]
reversed_list = list.reverse_copy()
reversed_list = list.reverse(True)
[::-1]
list.remove(42)
remove()
To install on iPhone/iPad: tap Share → Add to Home Screen.
Discuss About this Question.