Skip to content

Instantly share code, notes, and snippets.

@voldmar
Created October 25, 2012 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voldmar/3953304 to your computer and use it in GitHub Desktop.
Save voldmar/3953304 to your computer and use it in GitHub Desktop.
from decimal import Decimal as D
from math import ceil
eur = D(387)
rub = D(15516.52)
convert = D(0.774893452150329) / D(31.192)
converted = D(ceil(float(rub * convert)))
print eur, converted
# 387 386
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment