divided_by
Last updated
Last updated
Divides a number by another number.
The result is rounded down to the nearest integer (that is, the ) if the divisor is an integer.
Input
Output
divided_by
produces a result of the same type as the divisor — that is, if you divide by an integer, the result will be an integer. If you divide by a float (a number with a decimal in it), the result will be a float.
For example, here the divisor is an integer:
Input
Output
Here it is a float:
Input
Output
You might want to use a variable as a divisor, in which case you can’t simply add .0
to convert it to a float. In these cases, you can assign
a version of your variable converted to a float using the times
filter.
In this example, we’re dividing by a variable that contains an integer, so we get an integer:
Input
Output
Input
Output
Here, we the variable by 1.0
to get a float, then divide by the float instead: