Skip to content

Instantly share code, notes, and snippets.

View saucecode's full-sized avatar

Julian saucecode

  • New Zealand
View GitHub Profile
@saucecode
saucecode / postfix.py
Last active December 18, 2020 19:26
postfix calculator in python 2 & 3
# This has been moved to a repo -- https://github.com/saucecode/postfix-calculator
# all future updates found there
#!/usr/bin/env python
# postfix.py - a postfix calculator for python 2 & 3
# version 5 2016-09-20
import string, math
import inspect