我如何在python中显示一个小数点后100位的无理数? [英] how can i show an irrational number to 100 decimal places in python?

查看:26
本文介绍了我如何在python中显示一个小数点后100位的无理数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试求小数点后 2 到 100 位的平方根,但默认情况下它只显示为 10,我该如何更改?

解决方案

decimal 模块派上用场.

<预><代码>>>>从十进制导入 *>>>getcontext().prec = 100>>>十进制(2).sqrt()十进制('1.414213562373095048801688724209698078569671875376948073176679737990732478462107038850387673435

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?

解决方案

decimal module comes in handy.

>>> from decimal import *
>>> getcontext().prec = 100
>>> Decimal(2).sqrt()
Decimal('1.414213562373095048801688724209698078569671875376948073176679737990732478462107038850387534327641573')

这篇关于我如何在python中显示一个小数点后100位的无理数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆