Отладчик не нужен.
view-source:https://habr.com/ru/post/442800/ в хроме и ищите
<span class="post-stats__comments-count" title="Читать комментарии">21</span>
И после уже парсите через
requests +
BeautifulSoup
import requests
from bs4 import BeautifulSoup
pageURL = "https://habr.com/ru/post/442800/"
req = requests.get(pageURL)
soup = BeautifulSoup(req.content, 'html.parser')
comments = soup.find('span', {'class': 'post-stats__comments-count'}).get_text()
print('Количество комментариев на '+ pageURL + ' : ' +comments)
Документация в помощь.