标签:any ima info 出现 app inf python alt def
python模块就是以.py命名的文件
下面在中创建一个包含函数的my_print模块:
hello_world.py
def my_print(con):
print(con)
现在创建一个名为import_test.py的文件,这个文件导入刚刚创建的模块
import hello_world
my_print("hello world")
此时点击执行提示 No module named,即使这两个文件在同一个目录下geany也是提示 No module named,把要导入的模块放到python的安装位置倒是可以,但是我们还有另外一种比较简便的方式,添加相关路径,再次运行已成功
import sys
sys.path.append("D:\\python_work")
具体如图所示:
python模块以及出现import提示 No module named(geany中编译)
标签:any ima info 出现 app inf python alt def
原文地址:https://www.cnblogs.com/meihuawuban/p/13173100.html