2

我被要求用 Python 模拟 CLI。

这就是我所做的

def somefunction(a,b):
    //codes here
//consider some other functions too

print "--- StackOverFlow Shell ---"
while True:
    user_input = raw_input("#> ")
    splitit = user_input.split(" ")
    if splitit[0] == "add":
        firstNum = splitit[1]
        sNum = splitit[2]
        result = somefunction(firstNum, sNum)
        print result
    //consider some other elif blocks with "sub", "div", etc
    else:
        print "Invalid Command"

我还检查了列表的长度,这里“拆分”我将只允许 3 个参数,第一个是操作,第二个和第三个是要执行某些函数的参数,以防参数超过3,为此我做了检查。

虽然不知何故我设法让它工作,但有没有更好的方法来实现同样的目标?

4

2 回答 2

10

使用 pythonCMD模块:

检查以下页面上给出的几个示例

http://docs.python.org/library/cmd.html # 支持面向行的命令解释器

http://www.doughellmann.com/PyMOTW/cmd - # 创建面向行的​​命令处理器

prompt可以设置为每次要求用户输入新命令时要打印的字符串。

intro是程序开始时打印的“欢迎”消息。

例如:

import cmd

class HelloWorld(cmd.Cmd):
    """Simple command processor example."""

    prompt = 'prompt: '
    intro = "Simple command processor example."
于 2012-07-16T07:16:48.080 回答
1

您应该查看 VTE 库:

http://earobinson.wordpress.com/2007/09/10/python-vteterminal-example/

它工作得非常好,你可以很容易地自定义它的外观。这是多么容易:

    # make terminal
    terminal = vte.Terminal()
    terminal.connect ("child-exited", lambda term: gtk.main_quit())
    terminal.fork_command()

    # put the terminal in a scrollable window
    terminal_window = gtk.ScrolledWindow()
    terminal_window.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)
    terminal_window.add(terminal)
于 2012-07-16T11:01:58.780 回答