Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一段 Python 代码,它使
os.system(cmd)
打电话到哪里
cmd = "python apythonfile.py -o htmlfile.html folderlocation"
我不确定 -o 命令的作用。我试过用谷歌搜索它,但是搜索 -o 会显示 I/O 的东西,我在任何命令页面的常规列表中都找不到该命令。
在-o这种情况下,将传递给apythonfile.py; 您需要查看它的文档或源代码才能了解它的作用。
-o
apythonfile.py