我正在使用 Python 3 进行开发,我有一个带有我的类 Color 参数的方法,但是当我尝试使用一个方法时:
def __init__(self, name, color=Color.Color("none"), style="solid", width="1px"):
self.__name = name
self.__style = style
self.__width = width
if color.get_name() == "none":
color.color_by_name('Black')
这是错误:
File ................, line 10, in __init__
if color.get_name() == "none":
AttributeError: 'str' object has no attribute 'get_name'