how to make turtle object in 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() print(screen.canvheight) screen.exitonclick()