how to change turtle shape in python
import turtle as turtle
turtle.shape("arrow")#can be many shapes
how to change turtle shape in python
import turtle as turtle
turtle.shape("arrow")#can be many shapes
how to make a screen in turtle
def turtle_triangle():
window = turtle.Screen()
window.bgcolor("red")
brad = turtle.Turtle()
brad.shape("turtle")
brad.color("yellow")
brad.speed(1)
for _ in range(3):
brad.right(60)
brad.forward(200)
brad.right(60)
window.exitonclick()
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