Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Thanks, I have made some changes in code,
but with 1 last thing i desegree - try rounding 2.25.
In my opinion Python uses round half to even, but in float result is affected by float-accuracy problem.
round
instead ofs_round
math.round
round(2.45, 1)
->2.5
)Rounding in decimal only to return the result rounded in binary doesn't make much sense in most situations.