I tried to use raw_input() to get a list of numbers, however with the code
raw_input()
numbers = raw_input() print len(numbers)
the input
num = int(input('Size of elements : ')) arr = list() for i in range(num) : ele = int(input()) arr.append(ele) print(arr)