Python constants to arguments

A quick snippet to convert any primitive type constant in a Python main module to program arguments. E.g., if I have main.py with FEATURE_SELECTION = True NUMBER_OF_ROWS = 100   def main(): # rest of program and I want to … Continued