Python declarar matriz de tipo variável

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

print(a)
inibir