sys
import
sys
print
(sys.argv)
#输出
$ python test.py helo world
[
'test.py'
,
'helo'
,
'world'
]
#把执行脚本时传递的参数获取到了
2024-03-22 09:18:28
sys
import
sys
print
(sys.argv)
#输出
$ python test.py helo world
[
'test.py'
,
'helo'
,
'world'
]
#把执行脚本时传递的参数获取到了
下一篇:c#事务用法