79645659

Date: 2025-05-30 14:51:05
Score: 0.5
Natty:
Report link

You can avoid any configuration and just add the command line arguments to your code temporarily, bit dirty but very practical:

import sys

if __name__ == "__main__":
   sys.argv = [__file__, 'first-arg', 'second-arg']
   print('arguments:', sys.argv)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bterwijn