79089509

Date: 2024-10-15 10:32:07
Score: 0.5
Natty:
Report link

You're using "w+" which will truncate the file (This mode opens the file for both reading and writing, but it truncates (clears) the file as soon as it's opened).

Instead, you should open it in write mode ("w") after you've collected the new content to avoid overwriting.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nova