How do I access the command history from IDLE?

后端 未结 5 1607
梦如初夏
梦如初夏 2021-01-30 03:59

On bash or Window\'s Command Prompt, we can press the up arrow on keyboard to get the last command, and edit it, and press ENTER again to see the result.

But in Python\'

相关标签:
5条回答
  • 2021-01-30 04:10

    Go into Preferences > Keys. Find the 'history-previous' selection in the list and edit it to Up Arrow.

    0 讨论(0)
  • 2021-01-30 04:12

    If you're on mac, it's ctrl+p.

    0 讨论(0)
  • 2021-01-30 04:14

    You can always edit the file config-keys.cfg found under ~/.idlerc by default; look for the entry "history-previous" and set it to as below...

    history-previous = <Key-Up>
    

    Done.

    0 讨论(0)
  • 2021-01-30 04:19
    • I think you are looking for the history-previous action, which is bound to Alt+P by default.
    • You can remap it in "Options -> Configure IDLE -> Keys"
    • You can also access this command from the top menu in IDLE: "Shell -> Previous History"

    Incidentally, why don't you try a better (less ugly, for starters) shell like bpython or ipython?

    0 讨论(0)
  • 2021-01-30 04:22

    just use Alt+P to go up. Similarly, Alt+N could be used to go down.

    0 讨论(0)
提交回复
热议问题