12

我正在将 python turtle 用于需要海龟来绘制字符的项目。但是,当我尝试将 RGB 值用于颜色时,我不断收到错误消息。输入是:

turtle.color((151,2,1))

紧接着是一连串的动作。但是,当我运行程序时,我收到以下消息:

File "C:/Users/Larry/Desktop/tests.py", line 5, in center
turtle.color((151,2,1))
File "<string>", line 1, in color
File "C:\Python33\lib\turtle.py", line 2208, in color
pcolor = self._colorstr(pcolor)
File "C:\Python33\lib\turtle.py", line 2688, in _colorstr
return self.screen._colorstr(args)
File "C:\Python33\lib\turtle.py", line 1158, in _colorstr
raise TurtleGraphicsError("bad color sequence: %s" % str(color))
turtle.TurtleGraphicsError: bad color sequence: (151, 2, 1)

这是什么意思,我该如何解决?

4

5 回答 5

18

文档

r、g 和 b 中的每一个都必须在 0..colormode 范围内,其中 colormode 是 1.0 或 255(请参阅colormode())。

您的颜色模式可能设置为 1.0,因此单个颜色坐标需要在 0 到 1 范围内浮动,或者您需要将颜色模式设置为 255。

于 2013-05-27T18:04:24.277 回答
2

一个非常简短和简化的答案是,这意味着传递给 pencolor() 方法的值之前没有通过 Screen 对象方法 colormode() 设置。

必须创建画面对象。然后,必须设置颜色模式。因此,使海龟笔可以接受包含 0 到 255 范围内数字的元组类对象(255, 0, 20) 。例如。为什么?因为设置颜色模式的方法不止一种。

例如

from turtle import Turtle
from turtle import Screen

# Creating a turtle object
bert = Turtle()

# Creating the screen object
screen = Screen()

# Setting the screen color-mode
screen.colormode(255)

# Changing the color of the pen the turtle carries
bert.pencolor(255, 0, 0)

# 'Screen object loop to prevent the window from closing without command'
screen.exitonclick()
于 2020-12-19T01:30:28.977 回答
0

#尝试导入colormode函数

从海龟进口海龟从海龟进口颜色模式从海龟进口屏幕

tim = Turtle()
screen = Screen()
colormode(255)

tim.pencolor(151,2,1)
screen.exitonclick()
于 2021-09-24T15:01:31.350 回答
0

如果您正在使用函数生成随机颜色并且您正在使用 random 模块然后返回 3 个随机整数的元组,并传递此元组颜色函数,您会收到此错误,您可以通过编写此海龟来解决此问题。颜色模式(255)

使用此代码

import random
import turtle

from turtle import Turtle
turtle.colormode(255)
tim = Turtle()
tim.speed("fastest")
direction = [90,  270]
#colours = ["CornflowerBlue", "DarkOrchid", "IndianRed", "DeepSkyBlue", "LightSeaGreen", "wheat", "SlateGray", "SeaGreen"]
tim.pensize(5)

def random_color():
    r = random.randint(0, 255)
    g = random.randint(0, 255)
    b = random.randint(0, 255)
    random_color = (r, g, b)
    return random_color


while True:
    move = random.choice(direction)
    tim.forward(40)
    tim.color(random_color())
    tim.left(move)
于 2021-12-19T17:42:22.710 回答
0

如果您使用函数生成随机颜色并且使用 random 模块然后返回 3 个随机整数的元组,并传递此元组颜色函数,您将收到此错误,您可以通过编写此 turtle.colormode 来解决此问题(255)

使用此代码

import random
import turtle

from turtle import Turtle
turtle.colormode(255)
tim = Turtle()
tim.speed("fastest")
direction = [90,  270]
#colours = ["CornflowerBlue", "DarkOrchid", "IndianRed", "DeepSkyBlue", "LightSeaGreen", "wheat", "SlateGray", "SeaGreen"]
tim.pensize(5)

def random_color():
    r = random.randint(0, 255)
    g = random.randint(0, 255)
    b = random.randint(0, 255)
    random_color = (r, g, b)
    return random_color


while True:
    move = random.choice(direction)
    tim.forward(40)
    tim.color(random_color())
    tim.left(move)
于 2021-12-19T17:46:44.123 回答