如何从 python 脚本中 运行 一个 url 到命令行?
How to run a url from inside a python script to command line?
我有这个命令行文本,我想在我的 python 脚本中 运行 到命令行。有关如何执行此操作的任何建议?
explorer "ms-drive-to:?
destination.latitude=47.680504&destination.longitude=-122.328262&destination.name=Green Lake"
当然,您可以执行此 post 中描述的操作:
看来你应该使用 subprocess
:
Running Bash commands in Python
如果你想在 python shell 中有效地 运行 this,像这样: # 它将打开 windows map
>>> !explorer "ms-drive-to:?
destination.latitude=47.680504&destination.longitude=-122.328262&destination.name=Green Lake"
如果您想 运行 在代码中,请像其他人一样 method.All 答案是正确的。
import os
command_str = 'explorer "ms-drive-to:? destination.latitude=47.680504&destination.longitude=-122.328262&destination.name=Green Lake"'
os.system(command_str)
# it will open windows map, and driving directions to Green Lake from your current location.
小心使用双引号,单引号将无法正确识别!
windows uwp 信息:https://docs.microsoft.com/en-us/windows/uwp/launch-resume/launch-maps-app
我有这个命令行文本,我想在我的 python 脚本中 运行 到命令行。有关如何执行此操作的任何建议?
explorer "ms-drive-to:?
destination.latitude=47.680504&destination.longitude=-122.328262&destination.name=Green Lake"
当然,您可以执行此 post 中描述的操作:
看来你应该使用 subprocess
:
Running Bash commands in Python
如果你想在 python shell 中有效地 运行 this,像这样: # 它将打开 windows map
>>> !explorer "ms-drive-to:?
destination.latitude=47.680504&destination.longitude=-122.328262&destination.name=Green Lake"
如果您想 运行 在代码中,请像其他人一样 method.All 答案是正确的。
import os
command_str = 'explorer "ms-drive-to:? destination.latitude=47.680504&destination.longitude=-122.328262&destination.name=Green Lake"'
os.system(command_str)
# it will open windows map, and driving directions to Green Lake from your current location.
小心使用双引号,单引号将无法正确识别!
windows uwp 信息:https://docs.microsoft.com/en-us/windows/uwp/launch-resume/launch-maps-app