From 3c347833ac7e5f5925713edf33b82a0b18434c24 Mon Sep 17 00:00:00 2001 From: Madhusudan.C.S Date: Thu, 8 Oct 2009 18:59:47 +0530 Subject: Added quiz tex file and all exercise problems Madhu worked out. --- day1/exercise/datestring.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 day1/exercise/datestring.py (limited to 'day1/exercise/datestring.py') diff --git a/day1/exercise/datestring.py b/day1/exercise/datestring.py new file mode 100644 index 0000000..d990904 --- /dev/null +++ b/day1/exercise/datestring.py @@ -0,0 +1,23 @@ +def get_date_from_str(date_str): + month2mm = { + 'January': 1, + 'February': 2, + 'March': 3, + 'April': 4, + 'May': 5, + 'June': 6, + 'July': 7, + 'August': 8, + 'September': 9, + 'October': 10, + 'November': 11, + 'December': 12, + } + + dd, month, yyyy = date_str.split() + + mm = month2mm[month] + return int(yyyy), int(dd.strip(',')), mm + +date_str = raw_input('Enter a date string? ') +print get_date_from_str(date_str) -- cgit