Questions tagged «python-idle»


26
如何在python解释器外壳中重复上一条命令?
如何重复上一条命令?通常的键:向上,Ctrl +向上,Alt-p不起作用。他们产生荒谬的性格。 (ve)[kakarukeys@localhost ve]$ python Python 2.6.6 (r266:84292, Nov 15 2010, 21:48:32) [GCC 4.4.4 20100630 (Red Hat 4.4.4-10)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> print "hello world" hello world >>> ^[[A File "<stdin>", line 1 ^ SyntaxError: invalid syntax >>> ^[[1;5A File "<stdin>", line …


5
如何从IDLE访问命令历史记录?
在bash或Window的命令提示符上,我们可以按键盘上的向上箭头以获取最后一个命令,然后对其进行编辑,然后再次按Enter以查看结果。 但是在Python的IDLE 2.6.5或3.1.2中,似乎如果我们的语句打印出了25行,我们需要按向上箭头25次到最后一个命令,然后按Enter才能将其复制? 还是使用鼠标查明该行并单击那里,然后按Enter键进行复制?有没有更快的方法?


9
使用pycharm进行交互式shell调试
我是PyCharm的新手。我使用IDLE已有很长时间了。 在IDLE中执行脚本后使用Python对象非常方便。使用PyCharm与交互式python shell执行脚本对象后,是否可以使用脚本对象? 例如,我们有一个“测试”项目,其中有一个文件“ test.py”: a = '123' print a 执行后,我们可以获得结果: 123 Process finished with exit code 0 如何在交互式shell中使用字符串“ a”?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.