Suppose we want to retrieve data from the "Quickstart" chapter of the documentation on requests.
r = requests.get("https://requests.readthedocs.io/en/master/user/quickstart/")
You have learned that the text attribute allows you to access the content of the server’s response, but it will be presented as a string. Check out the "Quickstart" chapter to figure out which attribute stores the content as bytes. Below, write a single line, showing how you can access the response body for r.