python导入模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python导入模块相关的知识,希望对你有一定的参考价值。

 

main.py文件

#_*_coding:utf-8_*_
#__author__ = "csy"

from module_csy import say_hello as hello   #module_csy模块的say_hello函数起别名为hello

print(hello())

module_csy.py文件

#_*_coding:utf-8_*_
#__author__ = "csy"

name = csy
def say_hello():
    print(Hello csy!)
执行main.py输出结果:

技术分享

 

以上是关于python导入模块的主要内容,如果未能解决你的问题,请参考以下文章

有条件地导入 python 类的片段

python中的模块

python之模块和包

Python如何调用别人写好的脚本

python 模块导入和使用

Python之模块及包的导入