“Como tornar a imagem da forma de tartaruga menor” Respostas de código

Como tornar a imagem da forma de tartaruga menor

from turtle import *
color('red', 'yellow')
var = 100

begin_fill()
while True:
    forward(var)
    left(170)
    if abs(pos()) < 1:
        break
end_fill()

done()
King Monk

Como tornar a imagem da forma de tartaruga menor

from turtle import *
color('red', 'yellow')
var = 450 # bigger !!!

begin_fill()
while True:
    forward(var)
    left(170)
    if abs(pos()) < 1:
        break
end_fill()

done()
King Monk

opacidade da tartaruga

# start a turtle document:
import turtle
t = turtle.Turtle()
# set turtle's opacity to 50, or 50% transparency.
t.setfillopacity(50)
var Nik On Grep = "code";

Respostas semelhantes a “Como tornar a imagem da forma de tartaruga menor”

Perguntas semelhantes a “Como tornar a imagem da forma de tartaruga menor”

Mais respostas relacionadas para “Como tornar a imagem da forma de tartaruga menor” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código