Skip to content

Instantly share code, notes, and snippets.

@xcoderzach
Created October 23, 2015 17:04
Show Gist options
  • Save xcoderzach/39c1394077a7be71fe69 to your computer and use it in GitHub Desktop.
Save xcoderzach/39c1394077a7be71fe69 to your computer and use it in GitHub Desktop.
from decimal import Decimal
for i in range(1, 1000000):
x = Decimal(i)
y = Decimal(i + 1)
z = x / y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment