Answers for "float(1)"

2

what does float mean in python

V = float(input('enter a number= '))
print(V)
#it goes into a decimal 
#therefore float is used to changes the number to decimal
COPY THIS CODE TO CHEACK
Posted by: Guest on September-26-2021
0

float

I want to print a float value which has 2 integer digits and 6 decimal digits after the comma. If I just use printf("%f", myFloat) I'm getting a truncated value.

I don't know if this always happens in C, or it's just because I'm using C for microcontrollers (CCS to be exact), but at the reference it tells that %f get just that: a truncated float.

If my float is 44.556677, I'm printing out "44.55", only the first two decimal digits.
Posted by: Guest on November-14-2020

Browse Popular Code Answers by Language