How can I have two positional arguments, passed to a program via command line, where each argument is a list of files of variable length? I'm currently using argparse to get the arguments.
I understand you can have something similar with optional, named arguments but can you do it with positional arguments where there isn't a label (--arg) to delineate where one argument stops and the next begins?
The different files will have different file extensions, if that helps.