https://github.com/raprograms/python-terminal-calculator
https://github.com/raprograms/python-terminal-calculator
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/raprograms/python-terminal-calculator
- Owner: RAPrograms
- Created: 2025-06-18T19:44:17.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-18T21:04:02.000Z (about 1 year ago)
- Last Synced: 2025-06-18T21:38:18.752Z (about 1 year ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 |