import sys #Author: James Tam #Version: November 7, 2024 #Learning: accessing the name of the program and the 1st command line argunment. print("%s is the name of the file containing this program" %(sys.argv[0])) if(len(sys.argv)>1): print("%s is the first command line argument" %(sys.argv[1]))