“Dezimal in Python” Code-Antworten

Geben Sie die Antwort in 6 Dezimalpython

print("{:.6f}".format(variable_name))
Curious Cod

Fixe Präzisionsfloat -Python festgelegt

x = 13.949999999999999999
g = float("{:.2f}".format(x))
Cute Corncrake

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

Python Decimal

from decimal import Decimal
>>> Decimal('1.2')
Decimal('1.2')
Careful Caterpillar

W = Wie man sich in Python dezimal erkennen

i = 100
f = 1.23

print(type(i))
print(type(f))
# <class 'int'>
# <class 'float'>
Crazy Crab

Ähnliche Antworten wie “Dezimal in Python”

Fragen ähnlich wie “Dezimal in Python”

Weitere verwandte Antworten zu “Dezimal in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen