For example:
import turtle
num = 1
for i in range (10):
num = turtle.Turtle()
num += 1
I want to make 10 turtles named from 1 to 10. A code like this just makes one turtle called num before kicking up an error (TypeError: unsupported operand type(s) for +=: 'Turtle' and 'int'). Is there a way to make the 10 turtles named from 1 to 10 without manually defining them all?