Answers for "python get distinct values from list of dictionary"

4

python list distinct

my_list = list(set(my_list))
Posted by: Guest on September-26-2020
0

python list of dictionary unique

>>> [dict(y) for y in set(tuple(x.items()) for x in d)]
Posted by: Guest on March-14-2021

Code answers related to "python get distinct values from list of dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language