创建一个python文件,my_module.py
def hanshu():
print("this is my module")
class human(object):
def say(self):
print("你好")
创建另一个python文件,run.py,用来调用 my_module.py 的函数和类。
import my_module
my_module.hanshu()
b=my_module.human()
b.say()
结果:
this is my module
你好