“Python 2 Dezimalstellen” Code-Antworten

Format zu 2 oder n Dezimalstellen Python

num = 123.4567
formatted_num = '{0:.2f}'.format(num) # to 2 decimal places
# formatted_num = '123.46'
Anxious Alligator

Python 2 Dezimalstellen

print(format(432.456, ".2f"))

>> 432.45

print(format(321,".2f"))

>> 321.00
Wild Weasel

zwinge zwei Dezimalstellen Python

print ("{0:.2f}".format(a)) 
Lively Lynx

Finden 2 Dezimalstellen Python

a_float = 3.14159
formatted_float = "{:.2f}".format(a_float)
AK-47

Python 2 Dezimalplätze Format

>>> foobar = 3.141592
>>> print(f'My number is {foobar:.2f} - look at the nice rounding!')

My number is 3.14 - look at the nice rounding!
Wide-eyed Wren

Dezimal in Python

>>> from decimal import *
>>> getcontext().prec = 6
>>> Decimal(1) / Decimal(7)
Decimal('0.142857')
>>> getcontext().prec = 28
>>> Decimal(1) / Decimal(7)
Decimal('0.1428571428571428571428571429')
Dead Dormouse

Ähnliche Antworten wie “Python 2 Dezimalstellen”

Fragen ähnlich wie “Python 2 Dezimalstellen”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen