79817859

Date: 2025-11-12 14:45:57
Score: 0.5
Natty:
Report link

You're using two -m flags. The second one (-m HelloWorld.py) makes Python look for a module named HelloWorld.py, which isn’t valid syntax.

You should use:

python -m cProfile HelloWorld.py

or, if HelloWorld is an importable module (not a script file):

python -m cProfile -m HelloWorld
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: louis thomas