0

我正在研究 'wolframalpha' api,我一直收到此错误,我尝试搜索但没有收到有关此错误的任何工作帖子,如果您知道请帮我解决此错误

  File "jal.py", line 9
    app_id=’PR5756-H3EP749GGH'
           ^
SyntaxError: invalid syntax

请帮忙; 我明天必须展示项目:(

我的代码是

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import wolframalpha
import sys


app_id=’PR5756-H3EP749GGH'

client = wolframalpha.Client(app_id)

query = ‘ ‘.join(sys.argv[1:])
res = client.query(query)

if len(res.pods) > 0:
texts = “”
pod = res.pods[1]
if pod.text:
texts = pod.text
else:
texts = “I have no answer for that”
# to skip ascii character in case of error
texts = texts.encode(‘ascii’, ‘ignore’)
print texts
else:
print “Sorry, I am not sure.”
4

1 回答 1

1

您使用了反引号 ( ´) 而不是单引号 ( ')。

app_id='PR5756-H3EP749GGH'

Python 直接向您显示错误。另外,使用带有文本突出显示的编辑器。

于 2016-02-15T13:52:43.583 回答