If the user is entering the inputs in just one line with space as delimiting word between those inputs, you can write:
val1, val2, val3 = raw_input().split(' ')
Now, you can change it to:
val = float(val1)
The awesome trick is that in this way you don't waste your space creating a new list and storing your values in that and then fetching it.