getcommandline使用demo
时间: 2023-06-12 08:03:15 浏览: 92
命令模式demo
使用getcommandline函数可以获取命令行参数,以下是一个使用示例:
```python
import sys
if len(sys.argv) > 1:
print("命令行参数为:", sys.argv[1:])
else:
print("没有输入命令行参数")
```
在命令行中运行该脚本并输入参数,如:
```shell
python demo.py hello world
```
则输出:
```shell
命令行参数为: ['hello', 'world']
```
如果没有输入参数,则输出:
```shell
没有输入命令行参数
```
阅读全文