我创建了Wetter
类的实例,并向构造函数传递了一个数字。变量zip
保持为空。为什么?
这是当前url2的值:
"https://api.openweathermap.org/data/2.5/weather?zip=,DE&units=metric&appid=xxx"
zip=
没有价值。
我尝试从类中删除变量,因为我将变量声明为空。
import requests
import json
class Wetter:
key = "xxx" # API KEY von openweathermaps eintragen
url = "https://api.openweathermap.org/data/2.5/weather?zip="
parameters = ",DE&units=metric&appid=" + str(key)
zip = ""
url2 = "https://api.openweathermap.org/data/2.5/weather?zip=" + str(zip) + ",DE&units=metric&appid=" + str(key)
data = ""
json = ""
def __init__(this, zip):
this.zip = zip
def printWeather(this):
this.data = requests.get(this.url2)
this.json = json.loads(this.data.text)
print("Stadt: " + str(this.json["name"]) + "\nTemperatur: " + str(this.json["main"]["temp"]))
if __name__ == "__main__":
zip = str(input("PLZ eingeben: "))
obj = Wetter(zip)
obj.printWeather()
我希望变量将用提供的zip值填充。
答案 0 :(得分:5)
更改url2
后,您需要更新this.zip
:
def __init__(this, zip):
this.zip = zip
this.url2 = "https://api.openweathermap.org/data/2.5/weather?zip=" + str(this.zip) + ",DE&units=metric&appid=" + str(this.key)
答案 1 :(得分:0)
这是一个简单的错误 而不是
Activity
尝试做
zip = ""