79570596

Date: 2025-04-12 15:06:41
Score: 3
Natty:
Report link

Without seeing the code, I guess you need to format the Excel cells you're writing to, as "text" number format.

To do it with openpyxl, take a look at this similar StackOverflow question. @SuperScienceGrl answer suggests this code:

cell = ws['A1']
cell.number_format = '@'
Reasons:
  • Blacklisted phrase (1): StackOverflow
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @SuperScienceGrl
  • Low reputation (1):
Posted by: R4ygen