Fixing dates - 3
from date import test_date
import re
def fix_date3(date):
return re.sub(r'-(\d)(-|$)', r'-0\1\2', date)
test_date(fix_date3)
Output:
old: 2010-7-5
new: 2010-07-5
expected: 2010-07-05
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
from date import test_date
import re
def fix_date3(date):
return re.sub(r'-(\d)(-|$)', r'-0\1\2', date)
test_date(fix_date3)
Output:
old: 2010-7-5
new: 2010-07-5
expected: 2010-07-05