AttributeError: 'Response' 对象没有属性 'json'

AKI*_*WEB 2 python json python-requests

当我尝试使用请求库中.json()响应对象的方法时,出现错误:

>>> import requests
>>> response = requests.get("http://example.com/myfile.json")
>>> response_json = response.json()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'Response' object has no attribute 'json'
Run Code Online (Sandbox Code Playgroud)

为什么我会收到此错误,我该如何解决?