pycharm中引入自己类中的方法和变量时,在2.7和3.6中些许不一样(亲测)。
2.7中直接使用标准的“from class import variable”就ok 。
3.6中使用这种写法就会报错,正确写法要么是"import pakage.class import variable"要么是import class,然后使用的地方class.variable.
----------------------------import class import variable(报错)----------------------------------------
from class import variable
------------------------------import pakage.class import variable(正确)---------------------------
import pakage.class import variable
--------------------------------------------import class.png(正确)--------------------------------------
import class.png
在Stack Overflow上面提供了一种更为彻底的方法,感谢Games Brainiac 提供的解决办法。
1、将项目作为源目录
2、将源目录添加到python路径中:
default Setting > 搜索 python console > add source roots to pythonPATH
第二步
网友评论