I am trying to find the square root of 2 to 100 decimal places, but it only shows to like 10 by default, how can I change this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
decimal module comes in handy.
|
|||
|
|
|
You can use the decimal module for arbitrary precision numbers:
If you need the same kind of ability coupled to speed, there are some other options: [gmpy], 2, cdecimal. |
|||
|
|