If you write like
n = str(input()) n = n.split() print(n)
That will work. But if you try to do it with integers, you will get
You can split integer value with following ways..
list comprehension
n = str(input()) result = [x for x in n] print(result)
using list object
using map object
n = str(input()) result = list(map(int,n)) print(result)