The autocomplete function of VS Code 1.41.1 does not work for example for
from tensorflow.keras import layers
(for tensorflow version 1.14.0) but it works for
from tensorflow.python.keras import layers
So what is the exact difference? Why does it work in the latter case? And is it always safe to replace the first method with the second, meaning it produces identical behavior by using the exact same methods?