https://github.com/quantumwizard888/fabula
A little Python calculator based on postfix notation.
https://github.com/quantumwizard888/fabula
calculator console postfix-calculator postfix-evaluation postfix-expression postfix-notation python python3
Last synced: 4 months ago
JSON representation
A little Python calculator based on postfix notation.
- Host: GitHub
- URL: https://github.com/quantumwizard888/fabula
- Owner: QuantumWizard888
- License: mit
- Created: 2020-03-17T22:04:18.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-10T16:58:30.000Z (over 3 years ago)
- Last Synced: 2024-02-08T15:41:07.821Z (about 2 years ago)
- Topics: calculator, console, postfix-calculator, postfix-evaluation, postfix-expression, postfix-notation, python, python3
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FABULA
## Description ##
A little Python calculator based on postfix notation.
## HOW TO USE:
Type **whereami** if you need help.
## HOW TO READ POSTFIX NOTATION:
### Example 1
This expression:
```
3 18 + 2 **
```
Is equivalent to:
```
(3 + 18)^2 = 441
```
### Example 2
And this expression:
```
7 1 + 5 3 + *
```
Is the same as:
```
(7 + 1)*(5 + 3) = 64
```