0
what is the difference between floats and integrates
2 Respostas
+ 4
Keep going with the Python tutorial - you'll soon get the hang of it! https://www.sololearn.com/learn/Python/2272/
+ 2
You mean Integers?
Integers are Common numbers we use to represent like the Numerical System 1,2,3,4,....etc
while a float is similar to this, the only difference is Integer deals with WHOLE NUMBERS and float deals with Fractional or Decimal points
for eg: 1,2,3...etc are Integers and 1.0,2.0,3.0 are Float...
let's say we need to add a number to a program...balance amount in a bank account 2512.88$ here if we use Integer, we would miss the .88$ value, so we use Float at these circumstances.