I'm sending request to an API using python's requests
module and the response is in JSON (can be called dictionary right?)
If I do
for i in response:
print(i)
It would only print the key (the parameter) and not the value, how to get both as output. Thanks.