CS50'S Introduction to Programming with Python , Problem Set 8
A program that prompts the user for their date of birth in YYYY-MM-DD format and then sings / prints how old they are in minutes, rounded to the nearest integer, using English words instead of numerals, just like the song from Rent, without any and between words.
Clone repo
git clone https://github.com/GakuruAlex/seasons.gitChange dir to repo
cd seasonsCreate virtual env
python3 -m venv envnameActivate env
source envname/bin/activateInstall requirements
pip install -r requirements.txt