79132718

Date: 2024-10-28 09:15:33
Score: 0.5
Natty:
Report link

Path.walk was added in Python 3.12, so you propably using an older version.

You can check the version in python with:

import sys
print(sys.version)

Instead, use os.walk or Path.glob() (or update your Python)

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: tturbo