https://github.com/gakurualex/outdated
CS50's Introduction to Programming with Python Problem Set 3 on Exceptions, Outdated
https://github.com/gakurualex/outdated
datetime strftime strptime
Last synced: 10 months ago
JSON representation
CS50's Introduction to Programming with Python Problem Set 3 on Exceptions, Outdated
- Host: GitHub
- URL: https://github.com/gakurualex/outdated
- Owner: GakuruAlex
- Created: 2024-12-04T11:21:01.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-05T08:32:30.000Z (about 1 year ago)
- Last Synced: 2025-02-03T09:18:10.053Z (12 months ago)
- Topics: datetime, strftime, strptime
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Outdated #
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..
# Prerequisite #
clone this repo
```bash
git clone git@github.com:GakuruAlex/outdated.git
```
change directory to outdated
```bash
cd outdated
```
Create a virtualenv
```bash
python3 -m venv myenvname
```
Activate virtualenv
```bash
source myenvname/bin/activate
```
Install requirements
```bash
pip install -r requirements.txt
```
# Usage #
## Run program ##
```bash
python3 outdated.py
```
# Author #
[Alex Gakuru](https://github.com/GakuruAlex)