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

https://github.com/raprograms/python-terminal-calculator


https://github.com/raprograms/python-terminal-calculator

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# Terminal Calculator
A basic calculator which solves equations in the terminal

## Basic Arithmetic Operations
| Symbol | Operation | Implimented |
| ------- | ------------- | ----------- |
| + | Addition | Yes |
| - | Subtraction | Yes |
| * | Multiplication | Yes |
| / | Division | Yes |
| ^ or ** | Exponentiation | Yes |
| % | Percentage of | Yes |

## Advanced Mathematical Functions
| Symbol | Operation | Implimented |
| --------- | --------- | ----------- |
| sin(x) | Sine | No |
| cos(x) | Cosine | No |
| tan(x) | Tangent | No |
| sec(x) | Secant | No |
| csc(x) | Cosecant | No |
| cot(x) | Cotangent | No |

## Mathematical Constants
| Symbol | Description | Implimented |
| ------ | ----------------------------------- | ----------- |
| pi | Circle circumference/diameter ratio | Yes |