Python

Using python to pring "Hello"

print('Hello world, this is Alex Kumar')
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)
Here are some things about me:I like to play basketball and I also enjoy going to the gym
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)
{"coord":{"lon":-89.1028,"lat":30.438},"weather":[{"id":800,"main":"Clear","description":"clear sky","icon":"01d"}],"base":"stations","main":{"temp":72.68,"feels_like":72.46,"temp_min":71.58,"temp_max":75.04,"pressure":1020,"humidity":60},"visibility":10000,"wind":{"speed":17.27,"deg":130},"clouds":{"all":0},"dt":1680207755,"sys":{"type":1,"id":4248,"country":"US","sunrise":1680176886,"sunset":1680221608},"timezone":-18000,"id":4429197,"name":"Landon","cod":200}