Write a Python program to get the command-line arguments (name of the script, the number of arguments, arguments) passed to a script.

Write a Python program to get the command-line arguments (name of the script, the number of arguments, arguments) passed to a script.

1
2
3
4
import sys
print("This is the name/path of the script:"),sys.argv[0]
print("Number of arguments:",len(sys.argv))
print("Argument List:",str(sys.argv))

Final output

Leave a Comment