Ввод и массив ввода в Python

a = []
for i in range(1,n+1):
    a.append(int(input("Nhap phan tu thu %d: " % i)))
    
print(a)
Amused Anaconda