像这样:
string_input = raw_input()input_list = string_input.split() #splits the input string on spaces# process string elements in the list and make them integersinput_list = [int(a) for a in input_list]

像这样:
string_input = raw_input()input_list = string_input.split() #splits the input string on spaces# process string elements in the list and make them integersinput_list = [int(a) for a in input_list]