79252338

Date: 2024-12-04 18:28:13
Score: 0.5
Natty:
Report link

This will provide a list of each term in the command used to start execution:

Tested on Python 3.10

import sys

print("Command:", " ".join(sys.orig_argv))

E.g. python -m foo.bar -hello world

Would produce:

Command: python -m foo.bar -hello world
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Brian