day1/exercise/strrange.py
author Prabhu Ramachandran <prabhu@aero.iitb.ac.in>
Mon, 14 Jun 2010 20:16:05 -0400
branchscipy2010
changeset 399 7775af81b51a
parent 64 333092b68926
permissions -rw-r--r--
Initial checkin of file with details of the plan for the tutorial.

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