python调用其他文件中的函数或者类
01 在同一个文件夹下,调用函数或者类
A.py文件中
def test(): print('this is test func') class A: def test(): print('this is a class named A, its func is test() ')
B.py文件中
# way 1 from A import test from A import A test() a = A() a.test() # way 2 import A A.test() a = A.A() a.test()
02 在不同文件夹下,调用函数或者类
src文件夹与B.py文件在同一目录下,src文件夹下有C.py文件
C.py文件中
def test(): print('this is test func') class C: def test(self): print('this is a class named C, its func is test() ')
B.py文件中
from src.C import test from src.C import C test() a = C() a.test()
相关推荐
敏敏张 2020-11-11
SCNUHB 2020-11-10
小木兮子 2020-11-11
wwwsurfphpseocom 2020-10-28
WasteLand 2020-10-18
Cocolada 2020-11-12
杜鲁门 2020-11-05
shirleypaddy 2020-10-19
qingmumu 2020-10-19
Testingba工作室 2020-09-15
周公周金桥 2020-09-13
专注前端开发 2020-08-16
emagtestage 2020-08-16
heniancheng 2020-08-15
hanjinixng00 2020-08-12
小方哥哥 2020-08-09
83327712 2020-07-30
卖小孩的咖啡 2020-07-21
wqiaofujiang 2020-07-05