gpt4 book ai didi

python - 导入 Python 类

转载 作者:行者123 更新时间:2023-12-01 05:30:10 26 4
gpt4 key购买 nike

我的文件夹结构如下:

-PCore
|-__init__.py
|-PFnTransform.py
|-PEuler.py
|-PPoint3.py
|-...

在每个 .py 文件中都有一个同名的类。

我只想通过写入导入:

from Core import PPoint3

但实际上我需要写:

from Core.PPoint3 import PPoint3

当我打印类(class)时,我得到 <class 'PCore.PEuler.PEuler'>而不是<class 'PCore.PEuler'> (我想要什么)

我需要在__init__.py中写什么文件?

最佳答案

__init__.py文件中,您需要导入PPoint3类。

from PPoint3 import PPoint3

然后,您将能够从 PCore 包中导入 PPoint3 类。

关于python - 导入 Python 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20428156/

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