I\'m new to python and I\'m trying to scan multiple numbers separated by spaces (let\'s assume \'1 2 3\' as an example) in a single line and add it to a list of int. I did i
# Print In One Line Python print('Enter Value') n = int(input()) print(*range(1, n+1), sep="")