How can I quickly convert a list of dictionaries to a simple list of just the values if the order is not important?
For example:
results = [{'id':'abcd'},
           {'id':'bcde'},
           {'id':'cdef'}]
to simply
results = ('abcd','bcde','cdef')
 
     
     
     
    