def get_interesting_fact():
response = requests.get('https://i-fakt.ru/').content
html = BeautifulSoup(response, 'lxml')
fact = random.choice(html.find_all('h4', class_='entry-title')) #вот часть с ошибкой#
print(fact.text)
print(fact.a.attrs['href'])
fact = random.choice(html.find_all('h2', class_='entry-title'))