에러 종류 |
거북이 색 에러 : TurtleGraphicError: bad color string: … |
에러 메시지 |
Traceback (most recent call last): File "", line 23, in <module> t.color("…") File "turtle.py", line 1158, in _colorstr raise TurtleGraphicsError("bad color string: %s" % str(color)) turtle.TurtleGraphicsError: bad color string: … |
발생 이유 |
t.color 함수에서 괄호 안의 색 이름을 잘못 지정했을 때 발생합니다. |
해결 방법 |
t.color 함수의 괄호 안에 입력한 색 이름의 철자가 틀리지 않았는지 확인합니다. |