print('Hello world, this is Alex Kumar')
info ='I like to play basketball and I also enjoy going to the gym'
print("Here are some things about me: " + info)
import requests
url = "https://open-weather13.p.rapidapi.com/city/landon"
headers = {
"X-RapidAPI-Key": "f8c1edc71amsh2ceb94e75170cf3p1172ddjsn28d9990da6a6",
"X-RapidAPI-Host": "open-weather13.p.rapidapi.com"
}
response = requests.request("GET", url, headers=headers)
print(response.text)