An open API service indexing awesome lists of open source software.

https://github.com/samedwardes/sqrt


https://github.com/samedwardes/sqrt

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# sqrt

A GitHub repository for us to use to practice branching and merging. Developed for use in the UBC DSCI 524 - Collaborative Software Development course.

## Usage:

For example, to calculate the square root of 25:
```
python sqrt.py --n=25
```

```
5.0
```

## Dependencies:
- Python 3 or greater
- Python pacakges:
- `docopt`
- `math`

## Credits

This example was derived from an example originally developed by [Meghan Allen](https://www.cs.ubc.ca/~meghana/).