在同一个解决方案中,我有我的项目,它导入SQL和我的游戏项目。 不幸的是,当我输入"来自高分导入*"它没有在游戏文件中识别它。 我错过了一些重要的事情吗?
答案 0 :(得分:2)
使用import *
被认为是不好的做法。
您最好只使用from highscore import score
或import highscore
导入所需内容。
What are the “best practices” for using import in a module?
一般情况下,请勿使用modulename import *。这样做会使导入器的命名空间变得混乱,并且使得连接器更难以检测未定义的名称。