pythonturtle颜⾊⼤全_pythonturtle有多少可⽤颜⾊?turtle模版中的颜⾊很丰富。简单来说,你想要的颜⾊,turtle基本都有。
使⽤turtle设置颜⾊的命令如下:
第⼀个颜⾊为画笔颜⾊,第⼆个颜⾊为填充颜⾊,'#FF8EFF', '#2F0000'为颜⾊代码。
为了有个直观的印象,下图中的所有颜⾊turtle都可以使⽤。
简单画个图,看⼀下颜⾊:
import turtle as t
def hair():
t.penup()
<(-50, 150)
t.pendown()
t.fillcolor('#a2774d')
t.begin_fill()
for j in range(10):
t.setheading(60 - (j * 36))
t.circle(-50, 120)
def face():
t.penup()
<(0, 100)
t.pendown()
t.fillcolor('#f2ae20')
t.begin_fill()
t.setheading(180)
t.circle(85)
#下巴
t.circle(85, 120)
t.fillcolor('white')
t.begin_fill()
t.circle(85, 120)
t.setheading(135)
t.circle(100, 95)
t.penup()
<((0-dir)*30, 90)
t.setheading(90)
t.pendown()
t.fillcolor('#f2ae20')
t.begin_fill()
t.circle(dir*30)
t.penup()
<((0-dir)*40, 85)
t.setheading(90)
t.pendown()
t.fillcolor('white')
渐变颜代码大全t.begin_fill()
t.circle(dir*17)
def nose():
t.penup()
<(20, 0)
t.setheading(90)
t.pendown()
t.fillcolor('#a2774d')
t.begin_fill()
t.circle(20)
def eye(dir): # 画⽿朵,dir⽤来设置⽅向,左右⽿对称t.penup()
<((0-dir)*30, 20)
t.setheading(0)
t.pendown()
t.fillcolor('black')
t.begin_fill()
def mouth(): # 画嘴巴
t.penup()
<(0, 0)
t.setheading(-90)
t.pendown()
t.forward(50)
t.setheading(0)
t.circle(80, 30)
t.penup()
<(0, -50)
t.setheading(180)
t.pendown()
t.circle(-80, 30)
hair()
ears(1)
ears(-1)
face()
eye(1)
eye(-1)
mouth()
nose()
t.done()来⾃:星空

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。