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
Answer is trivial. try this.
x=input()
Suppose that [1,3,5,'aA','8as'] are given as the inputs
[1,3,5,'aA','8as']
print len(x)
this gives an answer of 5
print x[3]
this gives 'aA'
'aA'