Type in the console input field.
Minimalist code that asks you to type in some input info that can be later used in your script.
Type words only separated by spaces, without any punctuation.
code:
import flame typed_in = str(raw_input()) print typed_in input_list = typed_in.split() print input_list mylist = list(typed_in) print mylist