码迷,mamicode.com
首页 >  
搜索关键字:turtle    ( 708个结果
for循环:用turtle画一颗五角星
import turtle turtle.setup(600,400,0,0) turtle.bgcolor("red") turtle.color("yellow") turtle.fillcolor("yellow") turtle.begin_fill() for i in range(5): ...
分类:其他好文   时间:2018-05-07 17:48:08    阅读次数:154
五角星
>>> import turtle >>> turtle.setup(600,400,0,0) >>> turtle.bgcolor("red") >>> turtle.color("yellow") >>> turtle.fillcolor("yellow") >>> turtle.begin_f... ...
分类:其他好文   时间:2018-05-07 17:44:10    阅读次数:151
for循环:用turtle画一颗五角星
import turtle turtle.forward(100) turtle.right(144) turtle.forward(100) turtle.right(144) turtle.forward(100) turtle.right(144) turtle.forward(100) tu... ...
分类:其他好文   时间:2018-05-07 17:43:29    阅读次数:1028
for循环:用turtle画一颗五角星
import turtle # 设置初始位置 turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) # 花蕊 turtle.fillcolor("red") turtle.begin_fill(... ...
分类:其他好文   时间:2018-05-07 17:43:04    阅读次数:204
for循环:用turtle画一颗五角星
import turtle turtle.setup(600,400,0,0) turtle.bgcolor('orange') turtle.color('blue') turtle.fillcolor('blue') turtle.begin_fill() for i in range(5): ...
分类:其他好文   时间:2018-05-07 17:40:40    阅读次数:142
for循环:用turtle画一颗五角星
import turtle turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) turtle.fillcolor("red") turtle.begin_fill() turtle.circl... ...
分类:其他好文   时间:2018-05-07 17:39:55    阅读次数:159
for循环:用turtle画一颗五角星
import turtle turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) turtle.fillcolor("red") turtle.begin_fill() turtle.circl... ...
分类:其他好文   时间:2018-05-07 17:39:47    阅读次数:159
for循环:用turtle画一颗五角星
五角星 ...
分类:其他好文   时间:2018-05-07 17:38:04    阅读次数:158
hhh
import turtle # 设置初始位置 turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) # 花蕊 turtle.fillcolor("red") turtle.begin_fill(... ...
分类:其他好文   时间:2018-05-07 17:37:57    阅读次数:148
玫瑰花
import turtle turtle.penup() turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) turtle.fillcolor("red") turtle.begin_fill... ...
分类:其他好文   时间:2018-05-07 16:14:16    阅读次数:170
708条   上一页 1 ... 39 40 41 42 43 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!