How to repeat last command in python interpreter shell?

后端 未结 26 1237
一个人的身影
一个人的身影 2020-11-29 16:43

How do I repeat the last command? The usual keys: Up, Ctrl+Up, Alt-p don\'t work. They produce nonsensical characters.

(ve)[kakarukeys@localhost ve]$ python
         


        
26条回答
  •  一向
    一向 (楼主)
    2020-11-29 17:06

    This can happen when you run python script.py vs just python to enter the interactive shell, among other reasons for readline being disabled.

    Try:

    import readline
    

提交回复
热议问题