Rename bad variable names

This commit is contained in:
Marius Alwan Meyer 2023-09-29 13:25:31 +02:00
parent 357baf0b57
commit 55fdfc2c8d

View File

@ -13,16 +13,16 @@ base_url = "https://api.openweathermap.org/data/2.5/weather?"
complete_url = base_url + "appid=" + api_key + "&q=" + city_name
response = requests.get(complete_url)
x = response.json()
data = response.json()
if x["cod"] != "404":
if data["cod"] != "404":
y = x["main"]
current_temperature = y["temp"]
current_pressure = y["pressure"]
current_humidity = y["humidity"]
z = x["weather"]
weather_description = z[0]["description"]
info_main = data["main"]
info_weather = data["weather"]
current_temperature = info_main["temp"]
current_pressure = info_main["pressure"]
current_humidity = info_main["humidity"]
weather_description = info_weather[0]["description"]
print()
print(Columns([
@ -40,4 +40,4 @@ if x["cod"] != "404":
]))
else:
print(" City Not Found ")
print(" City Not Found ")