I have to read a few user input parameters. Now I could do that for every single in a line e.g. parameter1=raw_input("Parameter 1:") parameter2=raw_input("Parameter 2:")
For better test purpose, it's more practical to do that in one line. For example: Input(parameters) could be: 1 both 0.5 2 5 0.8
So, is it possible to make 6 Parameters (some are int, some string and some float) out of this line?
B.t.w. I'm using python 2.7
Thanks for your help!