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: