条件循环函数定义 练习
Posted 琦sq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了条件循环函数定义 练习相关的知识,希望对你有一定的参考价值。
a.画五角星
import turtle turtle.shape(\'turtle\') for i in range(5): turtle.forward(100) turtle.right(144) turtle.hideturtle()
turtle.done()
b.画同心圆
import turtle turtle.shape(\'turtle\') for i in range(5): turtle.up() turtle.goto(0,-20*(i+1)) turtle.down() turtle.circle(20*(i+1)) turtle.hideturtle()
turtle.done()
c.画太阳花
import turtle
turtle.shape(\'turtle\')
turtle.fillcolor(\'orange\')
turtle.begin_fill()
while True:
turtle.forward(100)
turtle.right(150)
if(abs(turtle.pos()))<1:
break
turtle.end_fill()
turtle.hideturtle()
turtle.done()
d.画五个五角星
import turtle turtle.shape(\'turtle\')
turtle.speed(100)
turtle.setup(600,400,0,0) turtle.color(\'yellow\') turtle.bgcolor(\'red\') turtle.fillcolor(\'yellow\') def my_goto(x,y): turtle.up() turtle.goto(x,y) turtle.down() def xing(r): turtle.begin_fill() for i in range(5): turtle.forward(r) turtle.right(144) turtle.end_fill() my_goto(-330,170) xing(100) my_goto(-130,300) xing(50) my_goto(-80,200) xing(50) my_goto(-80,100) xing(50) my_goto(-130,0) xing(50) turtle.hideturtle() turtle.done()
e.画◇花瓣的太阳花
import turtle turtle.shape(\'turtle\') turtle.speed(100) turtle.fillcolor(\'lavender\') turtle.begin_fill() def hua(): for i in range(1,3): turtle.forward(100) turtle.right(45) turtle.forward(100) turtle.right(135) for i in range(1,37): hua() turtle.left(10) turtle.end_fill() turtle.right(90) turtle.forward(300) turtle.hideturtle() turtle.done()
以上是关于条件循环函数定义 练习的主要内容,如果未能解决你的问题,请参考以下文章