Python объявляет массив типа переменной

a :[str] = []
a.append("abc")
a.append("123")

print(a)
inibir