how to make turtle shape image smaller
from turtle import *
color('red', 'yellow')
var = 100
begin_fill()
while True:
forward(var)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
how to make turtle shape image smaller
from turtle import *
color('red', 'yellow')
var = 100
begin_fill()
while True:
forward(var)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
how to make turtle shape image smaller
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()
turtle opacity
# start a turtle document:
import turtle
t = turtle.Turtle()
# set turtle's opacity to 50, or 50% transparency.
t.setfillopacity(50)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us