gpt4 book ai didi

Python getopt 获取无限参数

转载 作者:太空宇宙 更新时间:2023-11-03 17:21:48 24 4
gpt4 key购买 nike

如何使用 getopt 获得类似以下命令的内容?

python script.py -u "url_a""url_b""url_c"-s

我正在使用下面的代码,但我无法接收所有网址,它只返回其中一个网址

opts, args = getopt.getopt(argv, "u:s")

最佳答案

尝试:

python script.py -u "url_a url_b url_c" -s

和:

opts, args = getopt.getopt(argv, "u:s")
urls = opts[0][1].split()

关于Python getopt 获取无限参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33066266/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com