input space separated integers 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 python
_input = input()
_input = "thing1 thing2, thing3"
space_split = _input.split()
comma_split = _input.split(",")
Example 4: input spaces seperated integers in python
i1, i2 = map(int, input().split())
lst = map(int, input().split())
Example 5: how to take input in python3 separated by space
inp = list(map(int,input().split()))
Example 6: how to input n space separated integers in python
PQT =list(map(int, input().split()[:N]))