Exercise: argparse positional and named
Create a script that can accept any number of filenames, the named parameter --machine and the flag --verbose. Like this:
python ex.py file1 file2 file3 --machine MACHINE --verbose
Create a script that can accept any number of filenames, the named parameter --machine and the flag --verbose. Like this:
python ex.py file1 file2 file3 --machine MACHINE --verbose