79293987

Date: 2024-12-19 10:50:45
Score: 1.5
Natty:
Report link

The issue was indeed the fact that some answers were empty.

I used this workaround:

country_abbreviation = columns[2].text.strip()  # Country abbreviation
first_word = country_abbreviation.split()[0] if country_abbreviation else ""  # Extract first word
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Clément Aubert