gpt4 book ai didi

python - 在类中获取变量?

转载 作者:行者123 更新时间:2023-11-28 22:45:44 25 4
gpt4 key购买 nike

当我尝试这样做时:

print(pyfancy.RED + "Hello Red!" + pyfancy.END)

RED 和 END 是一个变量,但是当我运行它时,我得到:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'RED'

以前有用,现在不行了!

请帮忙!

最佳答案

听起来你有一个名为 pyfancy 的模块,其中包含一个类,可能也称为 pyfancy(?)。

要么编写 pyfancy.pyfancy.RED 要么像这样导入类:

from pyfancy import pyfancy

(您可能需要调整它以匹配代码中使用的实际类名。)

关于python - 在类中获取变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28263778/

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