我正在开发'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.”
您使用反引号 ( ´
( 而不是单引号 ( '
(。
app_id='PR5756-H3EP749GGH'
Python直接向你显示错误。此外,使用具有文本突出显示的编辑器。