spyder-ide/spyder-notebook

No Code Completion or Auto Completion Suggestion

SK-1119 opened this issue · 2 comments

I use spyder for learning machinne learning
when i work in editor the auto completion and suggestions work perfectly but when i use notebook in spyder there is no auto completion or any suggestion
sometimes we need to check which parameters a particular method needs and what type os data in that parameter but without auto complletion it is very difficult

Hey @SK-1119, thanks for reporting and sorry for the late reply. Code completion in the notebook works differently than on Spyder's editor.

You need to run code before getting completions. For instance, if want to get completions for the math module, you need to run in a cell

import math

and then write in another one

math.<TAB>

and you'll see completions for it.

Let us know if that works for you.

Thanks for the response i will definitely check this