write a program that accept the name of a file as a command line arguments in python code example
Example 1: python command line argument list try
1 # argv.py
2 import sys
3
4 print(f"Name of the script : {sys.argv[0]=}")
5 print(f"Arguments of the script : {sys.argv[1:]=}")
Example 2: cli args python
import argparse
parser = argparse.ArgumentParser(description='Process some integers.')
parser.add_argument('integers', metavar='N', type=int, nargs='+',
help='an integer for the accumulator')
parser.add_argument('--sum', dest='accumulate', action='store_const',
const=sum, default=max,
help='sum the integers (default: find the max)')
args = parser.parse_args()
print(args.accumulate(args.integers))