python调用其他文件中的函数或者类

枫铃3年前 (2021-09-30)Python218

1 .在同一个文件夹下,调用函数或者类

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()

2 .在不同文件夹下,调用函数或者类

src文件夹与B.py文件在同一目录下,src文件夹下有C.py文件

C.py文件中

'''
遇到问题没人解答?小编创建了一个Python学习交流QQ群:579817333 
寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书!
'''
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()

相关文章

Python中的负索引是什么?

Python中的序列索引可以是正也可以是负。 如果是正索引,0是序列中的第一个索引,1是第二个索引。 如果是负索引࿰...

python 字典+列表集合+文件读取

字典示例 ************************ 各地食品的三级菜单************************* 1.使用字典嵌套字典...

inspect模块---检查活动对象

[inspect]模块提供了一些有用的函数来帮助获取有关活动对象(如模块,类,方法,函数,...

Python 中的属性访问与描述符

在Python中,对于一个对象的属性访问,我们一般采用的是点(.)属性运算符进行操作。例如,有一个类实例对象foo&...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。