This is my code:
response = requests.get(url,params=datas)
data = response.json()
price=data["bids"]
print(price)
Output of the code:
{'31833.94000000': '0.02832100', '31833.93000000': '0.01291000', '31833.91000000': '0.09935100', '31833.90000000': '0.10243500', '31833.52000000': '0.01751100', '31833.38000000': '0.03296200', '31831.66000000': '0.00148000', '31831.24000000': '0.17640200', '31831.23000000': '0.84000000', '31830.79000000': '0.00044800', '31830.02000000': '0.70980400', ...
- Data changes every time I receive them.
- How can I copy only the first element?