I recently started working in pycharm. In jupyter notebook to find documentation of a function Shift + Tab would work but in pycharm I am not able to find.
I tried the following Ctrl + P, Ctrl + Shift + I its only working for inbuilt function like print()
, max()
but if I import a library its not working for it. for ex:
import cv2
cam = cv2.VideoCapture(0)
Its not telling any info or parameter for VideoCapture function and if I try to navigate it using Ctrl + B its showing "cannot find declaration to go" it also shows unresolved reference
I even checked with different library files like random, numpy but its not working
How should I resolve the problem