Passing integer lists to python
问题 I want to pass 2 lists of integers as input to a python program. For e.g, (from command line) python test.py --a 1 2 3 4 5 -b 1 2 The integers in this list can range from 1-50, List 2 is subset of List1. Any help/suggestions ? Is argparse the right module ? Any concerns in using that ? I have tried : import argparse if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--a', help='Enter list 1 ') parser.add_argument('--b', help='Enter list 2 ') args = parser.parse