2017年7月10日 星期一

python - Command line arguments in python - Python獲取命令列參數的方法

Python version :Python 3.6.0 :: Anaconda 4.3.1 (64-bit)
System version :Windows 10
將以下程式碼存成 test.py
from sys import argv
print('argv')
print(argv)
print(type(argv))
print('argv[1]')
print(argv[1])
print(type(argv[1]))
print('argv[2]')
print(argv[2])
print(type(argv[2]))
執行結果:
python test.py  abc  123
argv
['test.py', 'abc', '123']
<class 'list'>
argv[1]
abc
<class 'str'>
argv[2]
123
<class 'str'>

沒有留言:

張貼留言