发布时间:2019-09-09 08:46:32编辑:auto阅读(1594)
创建步骤:
创建一个文件夹:mymath,在该文件夹下创建三个python 文件,分别为:__init__.py getMax.py getMin.py
__init__.py: 这个文件必须以__init__命名,包管理器会自动寻找这个文件
__author__ = 'bloodchilde'
__all__=["getMax","getMin"]
__author__ = 'bloodchilde'
def max(a,b):
if a >= b:
return a
else:
return b
__author__ = 'bloodchilde'
def min(a,b):
if a <= b:
return a
else:
return b
test.py:
from mymath import getMax
from mymath import getMin
print getMax.max(1,2)
print getMin.min(1,2)
如下图所示:
上一篇: 强悍的 Python —— 读取大文件
下一篇: python 3d图
47851
46411
37294
34741
29323
25979
24927
19959
19551
18040
5800°
6422°
5937°
5967°
7074°
5921°
5952°
6447°
6409°
7789°