python导入模块中函数或者变量的方法

1、导入整个模块中的函数和变量,代码:
》创建模块say_hello.py文件:

#file:say_hello.py
def say_hi():
    print("hello,I'm ISmileLi!")

name = 'ISmileLi'

》使用模块say_hello.py如下:

#file:use_say_hello.py
import say_hello

say_hello.say_hi()
get_name = say_hello.name
print(get_name)

运行结果:
在这里插入图片描述

2、导入模块中的某个函数或者变量

#file:use_say_hello_func_attr.py

from say_hello import say_hi,name

say_hi()
print(name)

运行结果同1

3、导入模块中的所有函数和变量

#file:import_say_hello_all

from say_hello import *

say_hi()
print(name)

运行结果同1

4、导入模块时使用as给模块取别名

#file:give_mode_new_name.py

import say_hello as sh

sh.say_hi()
print(sh.name)

运行结果同1

5、导入函数时使用as给函数或者变量取别名
》函数取别名

#file:give_func_new_name.py

from say_hello import say_hi as hi

hi()

运行结果:
在这里插入图片描述

》变量取别名

#file:give_func_new_name.py

from say_hello import name as myname

print(myname)

运行结果:
在这里插入图片描述

说明:如有错误,欢迎指正。。。

posted @ 2019-05-05 23:18  ISmileLi  阅读(21)  评论(0编辑  收藏  举报