Console Bits: raw input

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.

Console raw input

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

Leave a Reply