CS50's Introduction to Programming with Python Problem Set 3 on Exceptions Outdated problem.
A program that prompts the user for a date, anno Domini, in month-day-year order, formatted like 9/8/1636 or September 8, 1638, wherein the month in the latter might be any of the month of the year and output the same date in YYYY-MM-DD format. If the user's not valid in either format prompt again..
clone this repo
git clone git@github.com:GakuruAlex/outdated.git
change directory to outdated
cd outdated
Create a virtualenv
python3 -m venv myenvname
Activate virtualenv
source myenvname/bin/activate
Install requirements
pip install -r requirements.txt
python3 outdated.py