python中将函数存储在模块里(导入特定的函数)
2021-06-08 15:03
标签:tle mod efi call port file 测试 shell ast 1、将函数存储在模块里 2、测试能否直接调用函数 3、从module1中导入特定的函数 python中将函数存储在模块里(导入特定的函数) 标签:tle mod efi call port file 测试 shell ast 原文地址:https://www.cnblogs.com/liujiaxin2018/p/14525522.htmldef fun1(x): ## 在模块module1.py中定义三个函数
print(x.upper())
def fun2(x):
print(x.title())
def fun3(x):
print("---",x)
>>> fun1("aaa")
Traceback (most recent call last):
File "
>>> from module1 import fun1 ## 导入特定函数fun1, 导入方法from + 模块名 + import + 函数
>>> fun1("aaaa") ## 可以直接调用fun1
AAAA
>>> fun2("aaaa")
Traceback (most recent call last):
File "
上一篇:java 面向对象三
下一篇:一文读懂Java多线程原理
文章标题:python中将函数存储在模块里(导入特定的函数)
文章链接:http://soscw.com/index.php/essay/92255.html