我将jupyter 4.4.0与Ipython 6.4.0,Python 3.6一起使用。我需要知道如何按在函数参数调用中按 tab 时定义的顺序来获取函数的参数。
例如:func(<cursor>
<-这是我的光标,我按下 tab 并得到:
clean = col = df = nlp = out_name = with_text =
而函数定义为:
def func (nlp, df, col=0, out_fname='tree', clean='case', with_text=False)
任何简单的选项或任何方式?