导入根目录下的模块
在根目录下建myfile.py,里面写
title="hello world"然后保存
方法1:直接用import加模块名字,不加后缀
import myfile
print(myfile.title)
打印出hello world
方法2:from myfile import title
print(title)
打印出hello world
导入其他目录下的模块
import sys
sys.path.append('E:\python') #导入E盘下Python文件夹下的模块
from myfile import title
print(title)
则打印出hello world