>>> from math import sqrt
>>> sqrt(5) / 2 + 0.5
1.618033988749895
>>> from decimal import *
>>> getcontext().prec = 100
>>> Decimal(5).sqrt() / Decimal(2) + Decimal(0.5)
Decimal('1.618033988749894848204586834365638117720309179805762862135448622705260462818902449707207204189391138')
>>>