author | Christopher Burns <chris.d.burns@gmail.com> |
Sun, 27 Jun 2010 22:05:22 -0500 | |
branch | scipy2010 |
changeset 425 | 5afcfce15e71 |
parent 386 | a0bec380b44f |
permissions | -rw-r--r-- |
month2mm = {'JAN': 1, 'FEB': 2, 'MAR': 3, 'APR': 4, 'MAY': 5, 'JUN': 6, 'JUL': 7, 'AUG': 8, 'SEP': 9, 'OCT': 10, 'NOV': 11, 'DEC': 12 } COMMA = ',' SPACE = ' ' date_str = raw_input('Enter a date string? ') date_str = date_str.replace(COMMA, SPACE) day, month, year = date_str.split() dd = int(day) mon = month[:3].upper() mm = month2mm[mon] yyyy = int(year) print dd, mm, yyyy