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

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: about 2 months ago
JSON representation

A little Python calculator based on postfix notation.

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
```