import urllib.request, urllib.error
try:
request = urllib.request.urlopen(self.url, data)
except urllib.HTTPError as e:
print('Сервер не смог выполнить запрос.')
print('Error code: ', e.code)
otvet=e.code
except urllib.URLError as e:
print('Нам не удалось связаться с сервером.')
print('Причина: ', e.reason)
otvet = e.reason