day1/exercise/strrange.py
author Nishanth Amuluru <nishanth@fossee.in>
Tue, 14 Dec 2010 23:15:36 +0530
branchscipyin2010
changeset 456 a27ccfc118fb
parent 64 333092b68926
permissions -rw-r--r--
removed sslc1.txt from circulate since it is not required

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