473,404 Members | 2,187 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

decimal and trunkating

i want to trunkate 199.999 to 199.99
getcontext.prec = 2 isn't what i'm after either, all that does is E's
the value.
do i really have to use floats to do this?
Jul 19 '05 #1
11 2935
Le Thu, 02 Jun 2005 19:59:08 +1000, Timothy Smith a écrit :
i want to trunkate 199.999 to 199.99
round(199.999, 2) # 2 digits after the decimal point
do i really have to use floats to do this?


19.999 is a float :
type(19.999) is float # ==> True
Jul 19 '05 #2
F. Petitjean wrote:
Le Thu, 02 Jun 2005 19:59:08 +1000, Timothy Smith a écrit :
i want to trunkate 199.999 to 199.99


round(199.999, 2) # 2 digits after the decimal point


Wrong. This will yield 200.00.
do i really have to use floats to do this?


19.999 is a float :
type(19.999) is float # ==> True


He is speaking of Decimals...

d = Decimal("199.999")
d._round(5, decimal.ROUND_DOWN)

Reinhold
Jul 19 '05 #3
Timothy Smith <ti*****@open-networks.net> wrote:
i want to trunkate 199.999 to 199.99
getcontext.prec = 2 isn't what i'm after either, all that does is E's
the value.
do i really have to use floats to do this?


You could try this (from a script I use for my phone bill):

from decimal import Decimal as d

def roundDecimal(num, prec):
return d(num).quantize(d("1e%d" % (-prec)))

where `prec` is the number of places after the decimal point.

I'm sure there is a better solutions and someone will tell it, thereby
teaching us both. ;-)

AdiaÅ*, Marc
Jul 19 '05 #4
Timothy Smith wrote:
i want to trunkate 199.999 to 199.99
getcontext.prec = 2 isn't what i'm after either, all that does is E's
the value.
do i really have to use floats to do this?


I think you need a context with appropriate rounding set (e.g.
ROUND_FLOOR?) and then use the quantize() method with an argument with
the appropriate number of decimal places.

For example, this works, though I'm definitely not a Decimal expert and
am confident there's a more elegant approach (which might depend on more
information about what you're doing):
d = decimal.Decimal('199.999')
decimal.getcontext().rounding = decimal.ROUND_FLOOR
d.quantize(decimal.Decimal('1.00'))

Decimal("199.99")

-Peter

(I hope this inspires someone who actually knows what he's doing with
Decimal to post an improved solution.)
Jul 19 '05 #5
Reinhold Birkenfeld wrote:
He is speaking of Decimals...

d = Decimal("199.999")
d._round(5, decimal.ROUND_DOWN)


Is one really supposed to call the underscore methods like that?

-Peter
Jul 19 '05 #6
Peter Hansen wrote:
>>> d = decimal.Decimal('199.999')
>>> decimal.getcontext().rounding = decimal.ROUND_FLOOR
>>> d.quantize(decimal.Decimal('1.00'))

Decimal("199.99")


Or skip changing the context and use the second argument to quantize:

d.quantize(Decimal('1.00'), decimal.ROUND_FLOOR)

-Peter
Jul 19 '05 #7
Peter Hansen wrote:
Reinhold Birkenfeld wrote:
He is speaking of Decimals...

d = Decimal("199.999")
d._round(5, decimal.ROUND_DOWN)


Is one really supposed to call the underscore methods like that?


Umm... no, I think not ;) But I couldn't find something better.

Reinhold
Jul 19 '05 #8
On 6/2/05, Peter Hansen <pe***@engcorp.com> wrote:

>>> d = decimal.Decimal('199.999')
>>> decimal.getcontext().rounding = decimal.ROUND_FLOOR
>>> d.quantize(decimal.Decimal('1.00')) Decimal("199.99")

-Peter

(I hope this inspires someone who actually knows what he's doing with
Decimal to post an improved solution.)


This is the right solution, but take in consideration that normally
you'll use one rounding method and you'll round to always the same
places, so, at the beggining of your program you'll do:
import decimal
decimal.getcontext().rounding = decimal.ROUND_FLOOR
d2 = decimal.Decimal("0.01")
and each time you want to round....
d = decimal.Decimal('199.999')
d.quantize(d2)

Decimal("199.99")

So it's not really that ugly....

.. Facundo

Blog: http://www.taniquetil.com.ar/plog/
PyAr: http://www.python.org/ar/
Jul 19 '05 #9
>> i want to trunkate 199.999 to 199.99
getcontext.prec = 2 isn't what i'm after either, all that does
is E's the value. do i really have to use floats to do this?
The precision is the total number of digits (i.e 199.99 has 5 digit
precision). Either round to that precision level or use the quantize
method to round to a fixed number of places after the decimal point:

Context(prec=5, rounding=ROUND_DOWN).create_decimal('199.999') Decimal("199.99") Decimal('199.999').quantize(Decimal('0.01'), rounding=ROUND_DOWN)

Decimal("199.99")
Raymond Hettinger

Jul 19 '05 #10

"Reinhold Birkenfeld" <re************************@wolke7.net> wrote in
message news:3g************@individual.net...
Peter Hansen wrote:
Reinhold Birkenfeld wrote:
He is speaking of Decimals...

d = Decimal("199.999")
d._round(5, decimal.ROUND_DOWN)


Is one really supposed to call the underscore methods like that?


Umm... no, I think not ;) But I couldn't find something better.

Reinhold


I'm new to Python ... and I've used decimal._round() as above. What's the
deal with using underscore methods? (A link will do if that'll save you some
typing).

Jul 19 '05 #11
chris wrote:
I'm new to Python ... and I've used decimal._round() as above. What's the
deal with using underscore methods? (A link will do if that'll save you some
typing).


Generally the underscore methods provide *internal* functionality that
might be used by other, more externally accessible (i.e. documented!)
methods in the object. While as I've said I'm no expert in Decimal and
can't say how _round() is intended to be used, it is not documented (as
far as I can see) and certainly therefore follows this way of thinking
about underscore methods. Several of us have found at least one
suitable alternative (i.e. quantize()) that don't rely on underscore
methods.

(Think of the underscore as being a non-binding convention that says
"don't use this externally if possible, as it doesn't form part of the
contract guaranteed by this object... it may be removed in the future,
may not work exactly as you wish, may have side effects that aren't
documented or haven't been analyzed fully when used externally, etc.")

-Peter
Jul 19 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
by: Batista, Facundo | last post by:
Here I send it. Suggestions and all kinds of recomendations are more than welcomed. If it all goes ok, it'll be a PEP when I finish writing/modifying the code. Thank you. .. Facundo
17
by: John Bentley | last post by:
John Bentley: INTRO The phrase "decimal number" within a programming context is ambiguous. It could refer to the decimal datatype or the related but separate concept of a generic decimal number....
2
by: Carl G | last post by:
I am storing a 0.000 a System.Decimal in a DataRow. On retrieval the value is only 0 without the three decimal places. It looks like the Get property returns System.Decimal.Zero, but why???? I...
2
by: Steve Summit | last post by:
-----BEGIN PGP SIGNED MESSAGE----- It's often explained that the reason for some of the imprecision in C's definition is so that C can be implemented on different kinds of machines -- say, those...
8
by: nick | last post by:
printf("%lf",3.25); the result is 3.25000 i want the answer correct to 3 decimal places What should i do? thanks!
10
by: Paul Sullivan | last post by:
decimal d; d = 1.1M OR d= (decimal) 1.1 Discussioon
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.