565 B
565 B
| id | tags | created | |
|---|---|---|---|
| 44li |
|
Wednesday, June 19, 2024 |
Passing arguments to Python scripts
sys.argv is a list that contains the command-line arguments passed to a Python
scripts.
sys.argv[0]= the name of scriptsys.argv[1]= the first argumentsys.argv[2]= the second argument, and so on
Example invocation:
python3 ./my_script.py argument_one argument_two
import sys
print(sys.argv[0])
print(sys.arg)
print(sys.argv[1])
# my_script.py
# ['my_script.py', 'argyment_one', 'argument_two']
# argument_one