I have a list of dictionaries like so:
listDict = [{\'id\':1,\'other\':2},{\'id\':3,\'other\':4},{\'id\':5,\'other\':6}]
I want a list of all t
[i['id'] for i in listDict]