shell:
python test.py a1 222
test.py
import sys print(sys.argv[1], type(sys.argv[1])) # a1 str print(sys.argv[2], type(sys.argv[2])) # 222 str