How can I accept multiple user inputs separated by a space? I don\'t know the number of inputs, but I do know they are all ints.
Here\'s some example inputs:
Try this:
nums = [int(i) for i in raw_input("Enter space separated inputs: ").split()]