我正在使用网站“https://www.python.org/”中的“Python 3.5”,当我尝试运行HVS提供的程序时,它无效。
C:\Users\sdixit23>python C:\Users\sdixit23\AppData\Local\Programs\Python\Python35-32\Shyam\NotWorking\restfulclient2.py
File "C:\Users\sdixit23\AppData\Local\Programs\Python\Python35-32\Shyam\NotWorking\restfulclient2.py", line 26 print key + " : " + jData[key] ^
SyntaxError: Missing parentheses in call to 'print' C:\Users\sdixit23>
请您分享另一个可以使用的RESTful API版本。
答案 0 :(得分:0)
您可以尝试添加括号。在python 3中是必要的
print(key + " : " + jData[key])
答案 1 :(得分:0)
你要么:
- 添加错误告诉您的括号或
- 使用Python 2作为脚本在第一行#Python 2.7.6