Reading the response

Report a typo

Every time you request a specified URL through Python, it returns a response object. Suppose you made the following request:

import requests

r = requests.get('https://www.python.org/')

You get a request.Response object — r. This object often contains valuable information. Select the right way to print the content of the response:

Select one option from the list
___

Create a free account to access the full topic