turtle库基础练习
Posted 咖啡coffee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了turtle库基础练习相关的知识,希望对你有一定的参考价值。
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()
以上是关于turtle库基础练习的主要内容,如果未能解决你的问题,请参考以下文章