1# cli.py 2import sys 3 4print(f"This is the name of the script: {sys.argv[0]}") 5print(f"Number of arguments: {len(sys.argv)}") 6print(f"The arguments are: {str(sys.argv[1:])}") 7 8