赞
踩
1. issue:
一个python文件,如何调用另一个python文件?
2. solution:
通过import导入。
举例:
- aaa.py
- class Event1():
- def func(a):
- b = a+1
- return b
-
- bbb.py
- from aaa.py import Event1 #导入另一个python文件中的类,下面则可以调用此类中的方法
- class Event2():
- num = Event1.func(2) #调用另一个python文件中类的方法func()
- print(num) # d=3=1+2
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。