for x in range(len(first_result) - 1):
if x == 0:
color_result.append(first_result[x])
else:
for y in range(len(color_result)-1):
if first_result[x] is color_result[y] == False:
color_result.append(first_result[x])
first 列表里面放的是 RGB,我要把不同的 RGB 放进 color 里,但是运行报 ValueError: Invalid RGBA argument: '\t#4169E1'