码迷,mamicode.com
首页 > 编程语言 > 详细

python导入模块(2)

时间:2017-06-25 19:34:31      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:author   模块   结果   .com   height   rom   from   pytho   imp   

 

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导入模块(2)

标签:author   模块   结果   .com   height   rom   from   pytho   imp   

原文地址:http://www.cnblogs.com/csy113/p/7077533.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!