欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

学习笔记,学习python时碰到的小问题和解决方法

程序员文章站 2022-05-01 23:28:08
...

1、运行turtle库时使用red参数出现问题

NameError: name 'red' is not defined

原因,错误使用,没有添加引号:

turtle.color(red)

正确使用为:turtle.color('red')

2、turtle.color(r,g,b)调用出错

turtle.TurtleGraphicsError: bad color sequence: (100, 100, 100)

错误代码为:

turtle.color(100, 100, 100)

正确使用为:turtle.color(0.5,1,1),因为这里的r,g,b的参数代表的是百分比,使用超过1的会出现参数报错