how to take the horizontal input the user in python code example
Example 1: taking input of n integers in single line python in a list
arr = list(map(int, input().split()))
Example 2: input two numbers in python in a single line
inputs = []for i in range(3): # loop 3 times inputs.append(input())