https://github.com/gakurualex/seasons
CS50's Introduction to Programming with Python Problem Set 8. Calculate how old a person is in minutes.
https://github.com/gakurualex/seasons
cs50problemsets datetime inflect pytest python regular-expression timedelta
Last synced: 3 months ago
JSON representation
CS50's Introduction to Programming with Python Problem Set 8. Calculate how old a person is in minutes.
- Host: GitHub
- URL: https://github.com/gakurualex/seasons
- Owner: GakuruAlex
- Created: 2025-01-20T10:46:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-23T13:36:40.000Z (over 1 year ago)
- Last Synced: 2025-03-11T21:42:01.466Z (over 1 year ago)
- Topics: cs50problemsets, datetime, inflect, pytest, python, regular-expression, timedelta
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Seasons of Love #
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.
# Prerequisite #
Clone repo
```bash
git clone https://github.com/GakuruAlex/seasons.git
```
Change dir to repo
```bash
cd seasons
```
Create virtual env
```bash
python3 -m venv envname
```
Activate env
```bash
source envname/bin/activate
```
Install requirements
```bash
pip install -r requirements.txt
```