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

python中将函数存储在模块里(导入特定的函数)

时间:2021-03-15 10:39:46      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:tle   mod   efi   call   port   file   测试   shell   ast   

 

1、将函数存储在模块里

def fun1(x):      ## 在模块module1.py中定义三个函数
    print(x.upper())

def fun2(x):
    print(x.title())

def fun3(x):
    print("---",x)

 

2、测试能否直接调用函数

>>> fun1("aaa")
Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    fun1("aaa")
NameError: name fun1 is not defined
>>> fun2("bbb")
Traceback (most recent call last):
  File "<pyshell#1>", line 1, in <module>
    fun2("bbb")
NameError: name fun2 is not defined
>>> fun3("ccc")
Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    fun3("ccc")
NameError: name fun3 is not defined

 

3、从module1中导入特定的函数

>>> from module1 import fun1    ## 导入特定函数fun1, 导入方法from + 模块名 + import + 函数
>>> fun1("aaaa")                ## 可以直接调用fun1
AAAA
>>> fun2("aaaa")
Traceback (most recent call last):
  File "<pyshell#5>", line 1, in <module>
    fun2("aaaa")
NameError: name fun2 is not defined
>>> fun3("aaaa")
Traceback (most recent call last):
  File "<pyshell#6>", line 1, in <module>
    fun3("aaaa")
NameError: name fun3 is not defined
>>> from module1 import fun2      ## 导入特定函数fun2
>>> fun2("aaaa")
Aaaa
>>> fun3("aaaa")
Traceback (most recent call last):
  File "<pyshell#9>", line 1, in <module>
    fun3("aaaa")
NameError: name fun3 is not defined
>>> from module1 import fun3     ## 导入特定函数fun3
>>> fun3("aaaa")
--- aaaa

 

python中将函数存储在模块里(导入特定的函数)

标签:tle   mod   efi   call   port   file   测试   shell   ast   

原文地址:https://www.cnblogs.com/liujiaxin2018/p/14525522.html

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