I have four turtles I want to be all at the same y pos and pass in an x pos to have them in a line along the bottom of the screen.
I was wondering if this is possible with a for loop?
code:
from turtle import *
canvas = Screen()
bg_img = "assets\\board.gif"
canvas.setup(1.0, 1.0, None, None)
canvas.bgpic(bg_img)
canvas.bgcolor("#222")
canvas.title("Boardgame")
start_ypos = -250
starta = (-20, start_ypos)
a = Turtle()
b = Turtle()
c = Turtle()
d = Turtle()
a.shape("square")
a.speed(0)
a.penup()
a.setpos(starta)