how to input 2 numbers in one line python code example
Example: input two numbers in python in a single line
inputs = []for i in range(3): # loop 3 times inputs.append(input())
inputs = []for i in range(3): # loop 3 times inputs.append(input())