I have tried to do a for loop to achieve a variable number of turtle clones but it doesn't create variables it only changes them. This is what I have tried but it doesn't create 20 clones with their name being a number from 1-20. The only reason that I want to do this is so I can easily create several turtles with easily accessible names:
import turtle
from turtle import *
turtle = Turtle()
for idx in range(20):
idx = turtle.clone()
for turtle in turtles():
print(turtle)