day1/exercise/strrange.py
author Prabhu Ramachandran <prabhu@aero.iitb.ac.in>
Mon, 21 Jun 2010 00:49:03 -0400
branchscipy2010
changeset 412 ca04d463c573
parent 64 333092b68926
permissions -rw-r--r--
ENH: Enhanced the problem set building on the image handing and arrays. Illustrated dtypes, casting and their importance along with an example using RGBA images. Also introduce edge detection.

str_ranges = "1, 3-7, 12, 15, 18-21"

ranges = str_ranges.split(',')

lst = []
for r in ranges:
    vals = r.split('-')
    if len(vals) == 2:
       lst.extend(range(int(vals[0]), int(vals[1]) + 1))
    else:
       lst.append(int(vals[0]))

print lst