Is there Intellisense / auto-complete in VisualStu

2019-09-15 00:40发布

问题:

I'm Visual Studio and I've started a new Python project in a Python 3 environment. Rx has been pip installed and I have the following code

from rx import Observable

xs = Observable.range(1, 10)
q = xs.where(lambda x: x % 2 ==0).select(lambda x: -x)

q.subscribe(print)

It's runs fine but when I typed Observable.ran... I expected to see Intellisense pop up with `range(...)" as an option, as it does normally, but it never did.

Why is this and how can I get Intellisense working for it?