gpt4 book ai didi

python - 导入一个类的静态方法而不导入整个类

转载 作者:行者123 更新时间:2023-11-28 21:38:29 25 4
gpt4 key购买 nike

<分区>

我想在一个类中导入一些函数而不需要导入整个类。

我有一些类如下


我的类文件.py
class MyClass:
def __init__(self):
pass #Some init stuff

def some_funcs(self):
pass #Some other funcs

@staticmethod
def desired_func():
pass #The func i want to import

MyScript.py
from MyClassFile import MyClass.desired_func

from MyClassFile.MyClass import desired_func

我尝试以这种方式导入但不起作用,有什么办法可以做到吗?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com