Pythonのf文字列を使用して、小数点以下の桁数を修正する簡単な方法はありますか?(具体的には.formatや%などの他の文字列フォーマットオプションではなく、f-strings)
たとえば、小数点以下2桁を表示したいとします。
それ、どうやったら出来るの?としましょう
a = 10.1234
Pythonのf文字列を使用して、小数点以下の桁数を修正する簡単な方法はありますか?(具体的には.formatや%などの他の文字列フォーマットオプションではなく、f-strings)
たとえば、小数点以下2桁を表示したいとします。
それ、どうやったら出来るの?としましょう
a = 10.1234
回答:
タイプ指定子をフォーマット式に含めます。
>>> a = 10.1234
>>> f'{a:.2f}'
'10.12'
それがに来るときfloat
の数字は、使用することができます書式指定子を:
f'{value:{width}.{precision}}'
どこ:
value
数値に評価される任意の式ですwidth
表示に合計で使用される文字数を指定しますvalue
が、幅が指定するよりも多くのスペースが必要な場合は、追加のスペースが使用されます。precision
小数点以下の文字数を示します不足しているのは、10進数値の型指定子です。このリンクには、浮動小数点と10進数で使用できる表示タイプがあります。
f
(固定小数点)プレゼンテーションタイプを使用した例をいくつか示します。
# notice that it adds spaces to reach the number of characters specified by width
In [1]: f'{1 + 3 * 1.5:10.3f}'
Out[1]: ' 5.500'
# notice that it uses more characters than the ones specified in width
In [2]: f'{3000 + 3 ** (1 / 2):2.1f}'
Out[2]: '3001.7'
In [3]: f'{1.2345 + 4 ** (1 / 2):9.6f}'
Out[3]: ' 3.234500'
# omitting width but providing precision will use the required characters to display the number with the the specified decimal places
In [4]: f'{1.2345 + 3 * 2:.3f}'
Out[4]: '7.234'
# not specifying the format will display the number with as many digits as Python calculates
In [5]: f'{1.2345 + 3 * 0.5}'
Out[5]: '2.7344999999999997'
f文字列でフォーマット指定子を使用します(詳細はこちら)。
pi = 3.141592653589793238462643383279
print(f'The first 6 decimals of pi are {pi:.6f}.')
The first 6 decimals of pi are 3.141593.
grade = 29/45
print(f'My grade rounded to 3 decimals is {grade:.3%}.')
My grade rounded to 3 decimals is 64.444%.
from random import randint
for i in range(5):
print(f'My money is {randint(0, 150):>3}$')
My money is 126$
My money is 7$
My money is 136$
My money is 15$
My money is 88$
print(f'I am worth {10000000000:,}$')
I am worth 10,000,000,000$
a = 10.1234
print(f"{a:0.2f}")
0.2fで:
数値のf-stringに関する詳細なビデオ https://youtu.be/RtKUsUTY6to?t=606
丸め用...
import datetime as dt
now = dt.datetime(2000, 1, 30, 15, 10, 15, 900)
now_mil = round(now.microsecond/1000)
print(f"{now:%Y/%m/%d %H:%M:%S.}{now_mil:03}")
出力:2000/01/30 15:10:15.001