Anonymous ID: 079d4f Jan. 27, 2018, 1:01 p.m. No.3428   🗄️.is 🔗kun   >>3432

>>3427

>>> 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')

>>>