Im relatively new to python so forgive me if this is a dumb question, but i currently have a dataframe that looks like this:
close
date
2020-07-24 69.400002
2020-07-23 59.570000
2020-07-22 61.790000
this was pulled using this code:
stockprices = requests.get(f"https://financialmodelingprep.com/api/v3/historical-price-full/{stock}?serietype=line&apikey=992f4ace89c00105ff6c15b225372d70")
stockprices = stockprices.json()
stockprices = stockprices['historical'][:60]
stockprices = pd.DataFrame.from_dict(stockprices)
stockprices = stockprices.set_index('date')
My question is how can i get a specific price for a specific column, like for example "59.57" from date "2020-07-23"