我正在使用 Python 3 创建一个应用程序,该应用程序从以下 API 服务中检索一个随机词,
http://randomword.setgetgo.com/get.php
这是我到目前为止所做的,
import urllib.request
response = urllib.request.urlopen('http://randomword.setgetgo.com/get.php')
我试过了
word = response.read()
print (word)
但我得到的只是,
b'\xef\xbb\xbfcellepore\r\n'
b'\xef\xbb\xbfchough\r\n'
b'\xef\xbb\xbfparamide\r\n'
b'\xef\xbb\xbfunsiphon\r\n'
b'\xef\xbb\xbfadenopodous\r\n'
b'\xef\xbb\xbfsupertramp\r\n'
b'\xef\xbb\xbfEphraimite\r\n'
b'\xef\xbb\xbfosteostracan\r\n'
b'\xef\xbb\xbfrhizopodan\r\n'
b'\xef\xbb\xbftransiter\r\n'
b'\xef\xbb\xbfoneirocritically\r\n'
API 服务说它将返回 JSON,但这看起来不像 JSON。
我想知道我的代码是否有问题或 API 服务没有按预期工作。
谢谢!