input and ouput array in python

Solutions on MaxInterview for input and ouput array in python by the best coders in the world

showing results for - "input and ouput array in python"
Charlton
16 Nov 2020
1a = []
2for i in range(1,n+1):
3    a.append(int(input("Nhap phan tu thu %d: " % i)))
4    
5print(a)