Answers for "fun idea with turtle python"

1

turtle beginner python

import turtle
satya = turtle.Turtle()
maan = turtle.Turtle()
#for my satya object
satya.shape("turtle")
satya.color('blue')
distance = 100
satya.forward(distance)
#for my maan object
maan.goto(10,200)


screen = turtle.Screen()
screen.exitonclick()
Posted by: Guest on September-03-2021
0

python turtle tutorial

>>> turtle.position()
(0.00,0.00)
>>> turtle.backward(30)
>>> turtle.position()
(-30.00,0.00)
Posted by: Guest on March-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language