how to accept list input python code example
Example 1: how to take input for list in python
a = []
s = int(input("Enter the size of array: "))
for i in range(0, s):
ele = int(input("Enter the elements of the array: "))
a.append(ele)
print(a)
Example 2: how to take list input in python
for i in range(0, n):
ele = int(input())
lst.append(ele)