标签:got yellow war 基础练习 fill imp col goto UI
1、
import turtle
turtle.circle(10)
turtle.circle(20)
tuitle circle(30)
2、
turtle.circle(20)
turtle.up()
turtle.goto(0,-15)
turtle.down()
turtle.circle(35)
3、turtle.forward(150)
turtle.right(144)
turtle.forward(150)
turtle.right(144)
turtle.forward(150)
turtle.right(144)
turtle.forward(150)
turtle.right(144)
turtle.forward(150)
turtle.right(144)
4、
>>> import turtle
>>> turtle.color(‘yellow‘)
>>> turtle.fillcolor(‘yellow‘)
>>> turtle.begin_fill()
>>> turtle.forward(100)
>>> turtle.right(144)
>>> turtle.forward(100)
>>> turtle.right(144)
>>> turtle.forward(100)
>>> turtle.right(144)
>>> turtle.forward(100)
>>> turtle.right(144)
>>> turtle.forward(100)
>>> turtle.end_fill()
标签:got yellow war 基础练习 fill imp col goto UI
原文地址:http://www.cnblogs.com/coffee2/p/7496314.html