For example my Code is:
import requests
r = requests.get(\'https://www.python.org\')
r.status_code
And the Result is:
Requests requires Python 3.3 or newer. It doesn't work on Python 3.2 as that version doesn't support the required u'...'
compatibility syntax for string literals.
From the requests documentation:
Requests officially supports Python 2.6–2.7 & 3.3–3.5, and runs great on PyPy.
Note that 3.2 is rather.. ancient. You really want to upgrade to a more recent Python 3 revision.