I get an assertion error when i run this in python 3

import wolframalpha
question = input("Question: ")
app_id = “7R3P9U-UWW4V3W35L”
client = wolframalpha.Client(app_id)

res = client.query(question)
anser = next(res.results).text

print(anser)