''' Purpose: do some functions produces lists from a string ''' def ints( ns ) : ''' Returns list of integers corresponding to the integer substrings in ns. ''' pass def parse_phone_string( pn ) : ''' Returns a three-element integer list for string phone # pn: 1st element: pn area code 2nd element: pn prefix 3rd element: pn line number ''' pass