IPythonのカッコを保管してくれる機能を有効化

Ipythonはカッコを省略すると補完する機能がある

>>> len self.reverse_dictionary
------> len(self.reverse_dictionary)
Out[8]: 92229

 

なんか手元で使えないし、日本語で探してもないので

>>> ?

したら書いてあった。

This feature is off by default (in rare cases it can produce
undesirable side-effects), but you can activate it at the command-line
by starting IPython with `--autocall 1`, set it permanently in your
configuration file, or turn on at runtime with `%autocall 1`.

ちなみに常時設定しなくても

>>> /len self.reverse_dictionary
------> len(self.reverse_dictionary)
Out[8]: 92229

/を先頭につければ補完してくれる