How To/python/

#!python
 
"""
input(string prompt)
Function reads and evaluates user input. prompt is displayed on screen.
"""
 
arr = input('enter Array: ');
 
#user input is: ['one','two','three']
 
print arr[0] #one
print arr[1] #two
print arr[2] #three