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 命令行应用程序,它支持交互式(当前使用 Cmd)和内联模式(如 Python 的python -c)。有没有不重复“行解析”代码的好方法?
python -c
使用Cmd.onecmd方法:
Cmd.onecmd
解释参数,就好像它是根据提示输入的一样。