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'>
沒有留言:
張貼留言