🔒 Preview mode. The first 15 Foundations lessons are free; this one is Pro. Start a 7-day trial to unlock the editor, AI hints and the rest of the curriculum. Card required, cancel any time in Dashboard.Start 7-day trial →
Given a JSON response body of `{"rates": {"EUR": 0.92, "GBP": 0.78}}`, what does this print?
data = r.json()
print(data["rates"]["EUR"], data["rates"]["GBP"])
Type the two values separated by one space.