1. 程式人生 > >for循環:用turtle畫一顆五角

for循環:用turtle畫一顆五角

code bre csharp true sharp .com position span nco

技術分享圖片

import turtle
turtle.pencolor(‘blue‘)
turtle.fillcolor(‘red‘)
turtle.begin_fill()

while True:
    turtle.forward(100)
    turtle.right(50)
    if abs(turtle.position())<1:
        break

turtle.end_fill()
turtle.done()

  

import turtle
turtle.bgcolor(red)
turtle.pencolor(yellow)
turtle.fillcolor(
yellow) turtle.begin_fill() turtle.forward(300) turtle.right(144) turtle.forward(300) turtle.right(144) turtle.forward(300) turtle.right(144) turtle.forward(300) turtle.right(144) turtle.forward(300) turtle.right(144) turtle.end_fill() turtle.done()

技術分享圖片

for循環:用turtle畫一顆五角