input a space separated list in python code example
Example 1: python space separated input
l = list(map(int,input().split())
Example 2: how to take space separated input in python
_input = input() # Get input
_input = "thing1 thing2, thing3"
space_split = _input.split() # ["thing1", "thing2,", "thing3"]
comma_split = _input.split(",") # ["thing1 thing2", "thing3"]