标签: python console interactive
编写函数时,例如在python交互式控制台中,如果我出错并出现错误信息,我必须通过单击向上箭头重复整个函数,有没有办法只用一个重复整个函数在发出语法错误之前单击我的位置?
>>> def foo(): ... c a + b File "<stdin>", line 2 c a + b ^ SyntaxError: invalid syntax