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?