标签: python python-3.x command-line-arguments
这是我一直尝试使用命令行或批处理文件运行的代码。它不接受参数,而是仅打开链接,而没有其他输入。它曾经可以工作,但是昨天我重设了系统,然后从3.6切换到Python 3.7(如果与此有关)
import webbrowser, sys address = ' '.join(sys.argv[1:]) webbrowser.open('https://www.google.co.in/maps/place/' + address)