1# It is the response you get. It has many attributes.
2
3import requests
4
5response = request.get('https://abc.com')
6
7print(response.[the response attribute])
8
9# Some response attributes:
10response.status_code
11response.json()
12response.text