A little Python calculator based on postfix notation.
Type whereami if you need help.
This expression:
3 18 + 2 **
Is equivalent to:
(3 + 18)^2 = 441
And this expression:
7 1 + 5 3 + *
Is the same as:
(7 + 1)*(5 + 3) = 64
A little Python calculator based on postfix notation.
Type whereami if you need help.
This expression:
3 18 + 2 **
Is equivalent to:
(3 + 18)^2 = 441
And this expression:
7 1 + 5 3 + *
Is the same as:
(7 + 1)*(5 + 3) = 64