c When no command-line argument is provided when the program is executed (other than the always-present argv[0]), then the program should print the following message: code example
Example: 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:]=}")