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
You just need to typeraw_input().split() and the default split() is that values are split by a whitespace.
raw_input().split()