これをどのように表示できますか:
Decimal( '40800000000.00000000000000')as '4.08E + 10'?
私はこれを試しました:
>>> '%E' % Decimal('40800000000.00000000000000')
'4.080000E+10'
しかし、余分な0があります。
これをどのように表示できますか:
Decimal( '40800000000.00000000000000')as '4.08E + 10'?
私はこれを試しました:
>>> '%E' % Decimal('40800000000.00000000000000')
'4.080000E+10'
しかし、余分な0があります。
回答:
from decimal import Decimal
'%.2E' % Decimal('40800000000.00000000000000')
# returns '4.08E+10'
「40800000000.00000000000000」には、他の数字と同じ意味を持つより多くの有意なゼロがあります。そのため、停止する場所を明示的に通知する必要があります。
すべての末尾のゼロを自動的に削除したい場合は、次のことを試すことができます。
def format_e(n):
a = '%E' % n
return a.split('E')[0].rstrip('0').rstrip('.') + 'E' + a.split('E')[1]
format_e(Decimal('40800000000.00000000000000'))
# '4.08E+10'
format_e(Decimal('40000000000.00000000000000'))
# '4E+10'
format_e(Decimal('40812300000.00000000000000'))
# '4.08123E+10'
format % values
Python 3標準ライブラリ内でも構文がまだ使用されているにもかかわらず、Python 3では技術的に非推奨であるか、少なくとも推奨されるフォーマット方法ではありません。Python2.6以降の現在の推奨構文は'{0:.2E}'.format(Decimal('40800000000.00000000000000'))
(または'{:.2E}'
Python 2.7以降)。この状況では厳密には有用ではありませんが、追加機能がないため追加の文字があるためstr.format
、フォーマット引数のより複雑な混合/再配置/再利用が可能です。
format
。よりジャジーです。
format()
関数の使用例は次のとおりです。
>>> "{:.2E}".format(Decimal('40800000000.00000000000000'))
'4.08E+10'
形式の代わりに、f-stringsを使用することもできます。
>>> f"{Decimal('40800000000.00000000000000'):.2E}"
'4.08E+10'
f"{Decimal('40800000000.00000000000000'):.2E}"
あなたの番号を考える
x = Decimal('40800000000.00000000000000')
Python 3以降
'{:.2e}'.format(x)
推奨される方法です。
e
科学表記法が必要であることを.2
意味し、ドットの後に2桁が必要であることを意味します。だからあなたは得るでしょうx.xxE±n
float(x)
すると、xがfloatに変換されます。
.format
メソッドの短い形式については誰も言及していません。
Python 3.6以上が必要
f"{Decimal('40800000000.00000000000000'):.2E}"
(私はそれがCees Timmermanと同じで、少し短いと信じています)
{num:E}
。たとえば、num = 40800000000.00000000000000
適切なフォーマットレイアウトを選択するには、Python文字列フォーマットの表をご覧ください。あなたの場合はそれ%.2E
です。
私の小数は大きすぎる%E
ので、即興する必要がありました:
def format_decimal(x, prec=2):
tup = x.as_tuple()
digits = list(tup.digits[:prec + 1])
sign = '-' if tup.sign else ''
dec = ''.join(str(i) for i in digits[1:])
exp = x.adjusted()
return '{sign}{int}.{dec}e{exp}'.format(sign=sign, int=digits[0], dec=dec, exp=exp)
次に使用例を示します。
>>> n = decimal.Decimal(4.3) ** 12314
>>> print format_decimal(n)
3.39e7800
>>> print '%e' % n
inf
"{:.2e}".format(n)
戻り'3.39e+7800'
のPython 3.3.2で(V3.3.2:d047928ae3f6、2013年5月16日、夜12時06分53秒)のWin32上の[MSC v.1600 64ビット(AMD64)]。
これは、「シンプル」な回答とコメントの統合リストです。
from decimal import Decimal
x = '40800000000.00000000000000'
# Converted to Float
x = Decimal(x)
# ===================================== # `Dot Format`
print("{0:.2E}".format(x))
# ===================================== # `%` Format
print("%.2E" % x)
# ===================================== # `f` Format
print(f"{x:.2E}")
# =====================================
# ALL Return: 4.08E+10
print((f"{x:.2E}") == ("%.2E" % x) == ("{0:.2E}".format(x)))
# True
print(type(f"{x:.2E}") == type("%.2E" % x) == type("{0:.2E}".format(x)))
# True
# =====================================
IMPORT
さん# NO IMPORT NEEDED FOR BASIC FLOATS
y = '40800000000.00000000000000'
y = float(y)
# ===================================== # `Dot Format`
print("{0:.2E}".format(y))
# ===================================== # `%` Format
print("%.2E" % y)
# ===================================== # `f` Format
print(f"{y:.2E}")
# =====================================
# ALL Return: 4.08E+10
print((f"{y:.2E}") == ("%.2E" % y) == ("{0:.2E}".format(y)))
# True
print(type(f"{y:.2E}") == type("%.2E" % y) == type("{0:.2E}".format(y)))
# True
# =====================================
# =====================================
x
# Decimal('40800000000.00000000000000')
y
# 40800000000.0
type(x)
# <class 'decimal.Decimal'>
type(y)
# <class 'float'>
x == y
# True
type(x) == type(y)
# False
x
# Decimal('40800000000.00000000000000')
y
# 40800000000.0
したがって、Python 3の場合、現時点では3つのいずれかを切り替えることができます。
お気に入り:
print("{0:.2E}".format(y))
def formatE_decimal(x, prec=2):
""" Examples:
>>> formatE_decimal('0.1613965',10)
'1.6139650000E-01'
>>> formatE_decimal('0.1613965',5)
'1.61397E-01'
>>> formatE_decimal('0.9995',2)
'1.00E+00'
"""
xx=decimal.Decimal(x) if type(x)==type("") else x
tup = xx.as_tuple()
xx=xx.quantize( decimal.Decimal("1E{0}".format(len(tup[1])+tup[2]-prec-1)), decimal.ROUND_HALF_UP )
tup = xx.as_tuple()
exp = xx.adjusted()
sign = '-' if tup.sign else ''
dec = ''.join(str(i) for i in tup[1][1:prec+1])
if prec>0:
return '{sign}{int}.{dec}E{exp:+03d}'.format(sign=sign, int=tup[1][0], dec=dec, exp=exp)
elif prec==0:
return '{sign}{int}E{exp:+03d}'.format(sign=sign, int=tup[1][0], exp=exp)
else:
return None