+ 48
What is floats in python
264 Answers
+ 67
Floats are represent real numbers and are written with a decimal point dividing the integer and fractional parts.
+ 41
Any real number having decimal point is float in python.
Ex. 1 - integer
But 1.0 - float
+ 28
A variables like:
P=3.14(float)
-27.2789(float)
0.0(float)
1.0(float)
+ 15
Floats are the decimal numbers
+ 9
" Floats are used in Python to represent numbers that aren't integers (whole numbers).
Some examples of numbers that are represented as floats are 0.5 and -7.8237591.
They can be created directly by entering a number with a decimal point, or by using operations such as division on integers."
+ 5
float is a virus that attack any operation like multiplication division... he will kill them all
+ 4
Please use the search bar before posting to avoid duplicates.
https://www.sololearn.com/discuss/1837465/?ref=app
https://www.sololearn.com/discuss/944187?ref=app
https://www.sololearn.com/discuss/1262636/?ref=app
+ 4
In Python flots represent the number are in decimal point and the number aren't integers.
For Example:
7.0, 0.5 etc. These are flots.
+ 3
A number which is not an integer. It has a decimal point
+ 3
If you want to divide an output just use the float variable.
+ 3
The output with decimal points are known as floats
2.0
5.5
9.9
+ 3
A float is a number with a decimal point in it. For example…
1.2
1.0
6.4
and so on
+ 3
Any real number having decimal point is float in python.
Example:
1 = integer
1.0 = float
+ 3
A number with decimal point.
+ 3
Float is a data type in python which contains decimal in a sequence of number , as python is dynamically typed language (because it automatically reads the data type and act accordingly ) so there is no need to explicitly declare data type while coding
float example - 1.555
(Hindi- yeh voh number hote hai jisme dashamlava ya decimal ka prayog kiya jata हैं)
+ 3
Floats in a python is an integer with decimal Point or we also get float from performing some operations with float and we can get it from only integers also such that when we divides two integers using / (slash).
+ 2
HI? :)
Concerning 8 END OF MODULE
"You are offered a choice of either $1.000.000 or $0.01 (one penny) doubled every day for 30 days (the resulting amount is doubled every day).
Task:
Write a program to calculate the amount that will result from the doubling to understand which choice results in a larger amount."
Could anyone clarify?
+ 2
A number with a decimal point .
Example 14.25 - float
+ 2
Son números decimales que usan el punto como decimal
+ 2
What is keyword?