IPythonについて
2022/3/14 2022/4/15
PythonではIPythonという機能があり、TABでコマンドの補完をしてくれたりします。
インストール方法
インストールはpip install ipython
でできます。
PS C:\Users\Administrator> pip install ipython
...abbr...
簡単ですね。
起動方法
起動方法もシンプルで、例えばPowerShellでipython
dできます。
PS C:\Users\Administrator> ipython
Python 3.10.0 (tags/v3.10.0:b494f59, Oct 4 2021, 19:00:18) [MSC v.1929 64 bit (AMD64)]
Type 'copyright', 'credits' or 'license' for more information
IPython 7.30.1 -- An enhanced Interactive Python. Type '?' for help.
In [1]: 1 + 1
Out[1]: 2
In [2]:
このように[1]等と数字が付与されるのが特徴的です。
IPythonの便利機能
IPythonの便利機能の例です。
まずは補完機能です。(ちょっと透かしが入って見辛いですが)「pri」まで打ってTABキーを押すと、コマンドの候補が出てきます。
その他にも以下の機能があります。
- 自動インデント
- オブジェクトに「?」をつけるとヘルプ(説明)が表示
- %ではじまるマジックコマンド
- !によるシェルコマンドの実行