e.g I want to the user to assign numbers to 3 variables
a = input()
b = input()
c = input()
I know you can do it like this;
a,b,c = input()
>>>1,2,3
but I need it to be asked on separate lines like the first example.
Is there a way to do something like this;
a,b,c = input() for range(3)