Rest API - Authentication and Authorization
Given this Python code snippet using the requests library, what will be the output if the API key is invalid?
import requests
headers = {"Authorization": "ApiKey wrong_key"}
response = requests.get("https://api.example.com/data", headers=headers)
print(response.status_code)