FloatField - Django Forms
Last Updated :
13 Feb, 2020
FloatField in Django Forms is a integer field, for taking input of floating point numbers from user. The default widget for this input is
NumberInput.It normalizes to:
A Python float. It validates that the given value is a float. It uses MaxValueValidator and MinValueValidator if
max_value
and
min_value
are provided. Leading and trailing whitespace is allowed, as in
Python’s float() function.
FloatField has following optional arguments:
- max_length and min_length :- If provided, these arguments ensure that the data is at most or at least the given length.
Syntax
field_name = forms.FloatField(**options)
Django form FloatField Explanation
Illustration of FloatField using an Example. Consider a project named
geeksforgeeks
having an app named
geeks
.
Refer to the following articles to check how to create a project and an app in Django.
Enter the following code into
forms.py
file of
geeks app.
Python3
from django import forms
# creating a form
class GeeksForm(forms.Form):
geeks_field = forms.FloatField( )
Add the geeks app to
INSTALLED_APPS
Python3
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'geeks',
]
Now to render this form into a view we need a view and a URL mapped to that URL. Let's create a view first in
views.py
of geeks app,
Python3
from django.shortcuts import render
from .forms import GeeksForm
# Create your views here.
def home_view(request):
context = {}
context['form'] = GeeksForm()
return render( request, "home.html", context)
Here we are importing that particular form from forms.py and creating an object of it in the view so that it can be rendered in a template.
Now, to initiate a Django form you need to create home.html where one would be designing the stuff as they like. Let's create a form in
home.html
.
html
<form method="POST">
{% csrf_token %}
{{ form.as_p }}
<input type = "submit" value = "Submit">
</form>
Finally, a URL to map to this view in urls.py
Python3
from django.urls import path
# importing views from views..py
from .views import home_view
urlpatterns = [
path('', home_view ),
]
Let's run the server and check what has actually happened, Run
Python manage.py runserver

Thus, an
geeks_field
FloatField is created by replacing "_" with " ". It is a field to input floating point numbers from the user.
How to use FloatField ?
FloatField is used for input of float numbers in the database. One can input date of Marks, percentage, etc. Till now we have discussed how to implement FloatField but how to use it in the view for performing the logical part. To perform some logic we would need to get the value entered into field into a python string instance.
In views.py,
Python3
from django.shortcuts import render
from .forms import GeeksForm
# Create your views here.
def home_view(request):
context = {}
if request.method == "POST":
form = GeeksForm(request.POST)
if form.is_valid():
temp = form.cleaned_data.get("geeks_field")
print(type(temp))
else:
form = GeeksForm()
context['form'] = form
return render(request, "home.html", context)
Let's try something other than a number in a FloatField.

So it accepts a valid float number input only otherwise validation errors will be seen. Now let's try entering a valid floating number into the field.

Float data can be fetched using corresponding request dictionary. If method is GET, data would be available in
request.GET and if post,
request.POST correspondingly. In above example we have the value in temp which we can use for any purpose. Let's check what type of temp variable is ?
Core Field Arguments
Core Field arguments are the arguments given to each field for applying some constraint or imparting a particular characteristic to a particular Field. For example, adding an argument
required = False
to FloatField will enable it to be left blank by the user. Each Field class constructor takes at least these arguments. Some Field classes take additional, field-specific arguments, but the following should always be accepted:
Field Options |
Description |
required |
By default, each Field class assumes the value is required, so to make it not required you need to set required=False |
label |
The label argument lets you specify the “human-friendly” label for this field. This is used when the Field is displayed in a Form. |
label_suffix |
The label_suffix argument lets you override the form’s label_suffix on a per-field basis. |
widget |
The widget argument lets you specify a Widget class to use when rendering this Field. See Widgets for more information. |
help_text |
The help_text argument lets you specify descriptive text for this Field. If you provide help_text, it will be displayed next to the Field when the Field is rendered by one of the convenience Form methods.
|
error_messages |
The error_messages argument lets you override the default messages that the field will raise. Pass in a dictionary with keys matching the error messages you want to override. |
validators |
The validators argument lets you provide a list of validation functions for this field.
|
localize |
The localize argument enables the localization of form data input, as well as the rendered output. |
disabled. |
The disabled boolean argument, when set to True, disables a form field using the disabled HTML attribute so that it won’t be editable by users.
|
Similar Reads
FilePathField - Django Forms
FilePathField in Django Forms is a string field, for input of path of a particular file from server. It is used for select inputs from the user. One needs to specify which folders should be used in FilePathField and field displays the inputs in form of a select field. The default widget for this inp
5 min read
FileField - Django forms
FileField in Django Forms is a input field for upload of files. The default widget for this input is ClearableFileInput. It normalizes to: An UploadedFile object that wraps the file content and file name into a single object. It can validate that non-empty file data has been bound to the form. This
5 min read
FloatField - Django Models
FloatField is a floating-point number represented in Python by a float instance. This field is generally used to store huge floating point numbers in the database. The default form widget for this field is a NumberInput when localize is False or TextInput otherwise. Syntax: field_name = models.Float
4 min read
EmailField - Django Forms
EmailField in Django Forms is a string field, for input of Emails. It is used for taking text inputs from the user. The default widget for this input is EmailInput. It uses MaxLengthValidator and MinLengthValidator if max_length and min_length are provided. Otherwise, all inputs are valid. EmailFiel
5 min read
DurationField - Django forms
DurationField in Django Forms is used for input of particular durations for example from 12 am to 1 pm. The default widget for this input is TextInput. It Normalizes to: A Python datetime.date object. It validates that the given value is a string which can be converted into a timedelta. DurationFiel
5 min read
FileField - Django Models
FileField is a file-upload field. Before uploading files, one needs to specify a lot of settings so that file is securely saved and can be retrieved in a convenient manner. The default form widget for this field is a ClearableFileInput. Syntax field_name = models.FileField(upload_to=None, max_length
6 min read
Django ModelFormSets
ModelFormsets in a Django is an advanced way of handling multiple forms created using a model and use them to create model instances. In other words, ModelFormsets are a group of forms in Django. One might want to initialize multiple forms on a single page all of which may involve multiple POST requ
4 min read
Django Forms
When one creates a Form class, the most important part is defining the fields of the form. Each field has custom validation logic, along with a few other hooks. This article revolves around various fields one can use in a form along with various features and techniques concerned with Django Forms. D
6 min read
ImageField - Django Models
ImageField is a FileField with uploads restricted to image formats only. Before uploading files, one needs to specify a lot of settings so that file is securely saved and can be retrieved in a convenient manner. The default form widget for this field is a ClearableFileInput. In addition to the speci
6 min read
TimeField - Django Forms
TimeField in Django Forms is a time input field, for input of time for particular instance or similar. The default widget for this input is TimeInput. It validates that the given value is either a datetime.time or string formatted in a particular time format. TimeField has following optional argumen
5 min read