我是python的新手,所以我的问题可能听起来很荒谬。任何帮助都将受到高度赞赏。
我在Windows系统上运行。
我有一个python文件sample.py,它是一个命令行解析器(使用argparse制作)。 sample.py文件依次根据使用命令提示符传递给file的参数调用许多子函数,如compile,run等。
#sample.py
<if command == complie>:call compile function(in another py file)
<if command == run>:call run function(in another py file)
调用sample.py文件:
cmd> python sample.py --Compile <argument list>
我希望在运行上面的命令之后,返回命令提示符并且python文件在后台运行。完成工作后,我会编译消息代码。
我想这样做,因为编译功能需要一些时间和意思,而我想使用sample.py文件设置其他实用程序。