This is somewhat of a simple question and I hate to ask it here, but I can\'t seem the find the answer anywhere else: is it possible to get multiple values from the user in
You have to use the split() method which splits the input into two different inputs. Whatever you pass into the split is looked for and the input is split from there. In most cases its the white space.
For example, You give the input 23 24 25. You expect 3 different inputs like
num1 = 23
num2 = 24
num3 = 25
So in Python, You can do
num1,num2,num3 = input().split(" ")