自定义标题
python导入模块中类的方法
1、导入模块中的单类
2、一个模块中存储多个类时导入的方法
3、导入模块中所有类的方法
4、导入模块中的类时把类使用as取一个别名
python导入模块中类的方法
1、导入模块中的单类
》创建模块
#file:person.py
class Person():
def __init__(self):
print("I'm a person!")
def name(self):
print("I need a name!")
def age(self):
print("I have age!")
def sex(self):
print("I have sex!")
》从模块导入单个类
#file:use_person.py
from person import Person
p = Person()
p.name()
p.age()
p.sex()
运行结果:
2、一个模块中存储多个类时导入的方法
》创建模块
#file:person.py
class Person():
def __init__(se