Créer une chaîne de tableau utilisant pour Python

a = ["a_" + str(i) for i in range(10)]
print(a)
Depressed Dove