Difference Between Python's IDLE and its command line

后端 未结 4 1717
梦如初夏
梦如初夏 2020-12-28 11:20

What are the key differences between Python\'s IDLE and its command line environment? IDLE looks nicer, of course, and has some kind of GUI...

Moreover, is IDLE trea

4条回答
  •  一整个雨季
    2020-12-28 11:43

    IDLE is a very simple Integrated Development Environment. It runs the same python, libraries etc. as commant-line.

    Even more basic (with less features) is IPython. Full feature IDE for Python is, for example, Eclipse with PyDev plugin, or LiClipse.

提交回复
热议问题