class FloatField(**options)
[source]
A floating-point number represented in Python by a float
instance.
The default form widget for this field is a NumberInput
when localize
is False
or TextInput
otherwise.
FloatField
vs. DecimalField
The FloatField
class is sometimes mixed up with the DecimalField
class. Although they both represent real numbers, they represent those numbers differently. FloatField
uses Python’s float
type internally, while DecimalField
uses Python’s Decimal
type. For information on the difference between the two, see Python’s documentation for the decimal
module.
Please login to continue.