import requests
url = 'https://httpbin.org/headers'
response = requests.get(url)
# Check if a specific header exists in the response
if 'Content-Type' in response.headers:
print("Content-Type header exists")
else:
print("Content-Type header not found")