I have Googled, but couldn't find a proper answer to this.
Let's say we have floats and we get their averages. Their averages are like this:
3.5
2.5
5
7
So we've got 4 numbers (who are not in a list anymore). Two numbers with a decimal and two whole numbers.
What I want to do is, to print these numbers and keep them like this. My problem is, though, that when I use %.1f
, it makes 5.0 and 7.0 from 5 and 7, while I want to keep them as they are (so keep them as a whole number).
So I'd like to print them exactly as they are, but I don't know how. Float adds decimal
points to whole numbers. Converting them to an int
, removes the needed decimals.
Both options are not what I want.
Can someone point me in the right direction?
Edit: the relevant code, as asked:
# I have a list of numbers and I am calculating their average and rounding them first.
get_numbers = map(float, line[-1])
average_numbers = sum(get_numbers) / len(get_numbers)
rounded_numbers= round(average_numbers * 2) / 2
# So now, I've got the numbers: 3.5, 2.5, 5, 7
print "The numbers are: %.1f" % (rounded_numbers)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…