I just started to learn python3 in the past few days and I was trying to make a virtual assistant. I've tried running this program and I keep getting an error that 'wolframalpha' is an unresolved import even though I have already gone into the command prompt and done a successful "pip install wolframalpha".
import wolframalpha
input = raw_input("Question: ")
app_id = "-I INSERTED MINE HERE -"
client= wolframalpha.Client(app_id)
result= client.query(input)
answer= next(res.results).text # Makes sure wolframalpha doesn't give a graph as an answer
print(answer)