take input separated by space in python code example
Example 1: take space separated int input in python
inp = list(map(int,input().split()))
Example 2: python space separated input
l = list(map(int,input().split())
Example 3: how to take space separated input in pyhon dicationary
dic = {}
for index, value in enumerate(input().split()):
dic[int(value)] = int(index)