store particular response attribute in variable

omkargade
after executing kite.orders(order_id)
i am getting this output:
[{'status': 'REJECTED', 'product': 'MIS', 'pending_quantity': 0, 'order_type': 'MARKET', 'exchange': 'NSE', 'order_id': 'xxx', 'price': 0.0, 'exchange_order_id': None, 'order_timestamp': '2017-02-01 23:54:22', 'transaction_type': 'BUY', 'trigger_price': 0.0, 'validity': 'DAY', 'disclosed_quantity': 0, 'status_message': 'RMS: Auto Square Off Block', 'average_price': 0.0, 'quantity': 1}, {'status': 'VALIDATION PENDING', 'product': 'MIS', 'pending_quantity': 1, 'order_type': 'MARKET', 'exchange': 'NSE', 'order_id': 'xxx', 'price': 0.0, 'exchange_order_id': None, 'order_timestamp': '2017-02-01 23:54:22', 'transaction_type': 'BUY', 'trigger_price': 0.0, 'validity': 'DAY', 'disclosed_quantity': 0, 'status_message': None, 'average_price': 0.0, 'quantity': 1}, {'status': 'PUT ORDER REQ RECEIVED', 'product': 'MIS', 'pending_quantity': 0, 'order_type': 'MARKET', 'exchange': 'NSE', 'order_id': 'xxx', 'price': 0.0, 'exchange_order_id': None, 'order_timestamp': '2017-02-01 23:54:22', 'transaction_type': 'BUY', 'trigger_price': 0.0, 'validity': 'DAY', 'disclosed_quantity': 0, 'status_message': None, 'average_price': 0.0, 'quantity': 1}]


how can i store the value of 'price' in a variable in python?
This discussion has been closed.