ipython在命令行的使用,相较于直接输入python并使用更加方便。例如有时会自动跳转到合适的位置。
输入以下指令并回车:
ipython
操作的示例:
Python 3.7.3 (default, Mar 27 2019, 22:11:17) Type 'copyright', 'credits' or 'license' for more information IPython 7.4.0 -- An enhanced Interactive Python. Type '?' for help. In [1]: for i in range(10): ...: print(i) ...: 0 1 2 3 4 5 6 7 8 9 In [2]: i Out[2]: 9 In [3]:
同样也是输入以下指令结束进程。
exit()
另外再附一下python的画面,输入以下指令并回车开始:
python
操作的示例:
Python 3.7.3 (default, Mar 27 2019, 22:11:17) [GCC 7.3.0] :: Anaconda, Inc. on linux Type "help", "copyright", "credits" or "license" for more information. >>> for i in range(10): ... print(i) ... 0 1 2 3 4 5 6 7 8 9 >>>