我正在使用 WolframAlpha API。一切都很好,直到我试图得到一个问题的结果。当我问它"生命的意义是什么"而不是程序给我42
时,它给了我"42 s
"......不太确定为什么,有人可以帮忙吗?
这是我的代码:
import wolframalpha
client= wolframalpha.Client("**myappid**")
z = "What is the meaning of life?"
res = client.query(z)
try:
print (next(res.results).text)
except StopIteration:
print ("No results")
试试这个:
import wolframplha
app_id = "your app id"
client = wolframalpha.Client(app_id)
res = client.query(input)
answer = next(res.results).text #to make sure wolramalpha gives answer in text and not in graph and all
print(answer)