我在Windows 10上使用PyCharm 2016.1和Python 2.7並導入了matplotlib模塊。PyCharm - matplotlib(和其他導入模塊)的自動完成
由於matplotlib模塊非常廣泛,我對Python相對比較陌生,我希望PyCharm中的Auto Complete功能可以幫助我獲得對象的現有屬性/函數的概述。每次通過api文檔進行挖掘都會更方便,不知道要在哪裏找到它。
例如:
from matplotlib import pyplot as plt
fig, ax = plt.subplots()
當我鍵入ax.
有沒有北京時間自動完成的性質,職能軸等,我只得到了建議名單。
我已經嘗試過this並直接與進口軸模塊:
import matplotlib.axis as axis
或
from matplotlib.axis import Axis as axis
智能自動完成和「收集運行時類型信息」已經啓用。
有沒有一種方法可以像上面描述的那樣啓用自動完成功能,還是有另一種支持這種功能的IDE?