I have a python data-structure as follows:
A = [{\'abc\': \'kjkjl\'},{\'abc\': \'hjhjh\'},{\'abc\': \'78787\'}]
How can I remove the \'abc\' fr
>>> B = [a["abc"] for a in A] >>> B ['kjkjl', 'hjhjh', '78787']