I want to input in inline
1. input number : 5 2. 1 5 3 4 2
how to receive input for the number of inputs in python?
I\'ve been trie
simple
i = list(map(int, input("Numbers: ").split())) print(i)
It will accept multiple integers as input on a single line in Python3