Создайте строку массива, используя для Python

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