473,322 Members | 1,504 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,322 software developers and data experts.

Align numbers at decimal point

Hi,
I'm sure someone asked this question before, but I can't find the
solution on the web or in the groups.

I want to print out columns of numbers which are aligned at the decimal
point, eg:

123.45
3.0
65.765486

I can't find how to do that. I use the following command as a
workaround, but it only works when the number of digits after the
decimal point is constant:

print ("%.2f" % reduced_time).rjust(9)
Is there an easy solution?
Thanks,

Enno

--
Remove "REMOVE_ME" for PM replies
Jul 18 '05 #1
4 8910
Enno Middelberg wrote:
I want to print out columns of numbers which are aligned at the decimal
point, eg:

123.45
3.0
65.765486


One way to do it:
def adjust(f, width, dec): .... pos = f.find(".")
.... if pos == -1:
.... pos = len(f)
.... dec += 1
.... return "%*s%-*s" % (width-dec, f[:pos], dec, f[pos:])
.... print "\n".join([repr(adjust("%s" % f, 10, 5)) for f in [1, 2.3456,

42.42]])
' 1 '
' 2.3456 '
' 42.42 '

Peter

Jul 18 '05 #2
Enno Middelberg <en**********************@csiro.au> wrote:
I'm sure someone asked this question before, but I can't find the
solution on the web or in the groups.

I want to print out columns of numbers which are aligned at the decimal
point, eg:

123.45
3.0
65.765486

I can't find how to do that. I use the following command as a
workaround, but it only works when the number of digits after the
decimal point is constant:

print ("%.2f" % reduced_time).rjust(9)
Is there an easy solution?


Well, first of all you must have all the numbers at hand before you can
print even just one of them, of course -- you can't know how much space
you need on the left until you know what number out of them all needs
most such space. So, say the numbers are coming from some iterable
all_numbers, just start by accumulating their formatted forms (without
yet any padding), as well as the space each occupies before the decimal
point (since we do know we'll need that information later):

formatted_numbers = []
space_on_the_left = []
for number in all_numbers:
formatted_string = your_favourite_format % number
formatted_numbers.append(formatted_string)
on_the_left = formatted_string.find('.')
if on_the_left < 0: on_the_left = len(formatted_string)
space_on_the_left.append(on_the_left)

You might make this part a bit more compact with a couple of clever list
comprehensions, but I think it's more readable when written out this
way. If you know every formatted string WILL include a period, you
should change the if statement into an assert (or change the call to the
find method into a call to the index method, and remove the following if
statement -- index will raise if it can't find the needle in the
haystack, while find returns -1 in that case).

After this loop you can easily find out how much space you need on the
left for the number that is longest there...:

left_total = max(space_on_the_left)

and now you do have all the info you need to do the printing:

for s, l in zip(formatted_numbers, space_on_the_left):
padding = ' '*(left_total - l)
print '%s%s' % (padding, s)

Again, you can of course make this a bit more compact, for example by
computing the padding string contextually to the print statement, but I
think it's clearer and more readable to give 'padding' its own name.

In many cases you can simplify things if you know left_total in advance,
for example you know that the '.' (if any) must always fall exactly on
the 21st column of each row you're printing (meaning you know that no
number will have more than 20 digits before the . -- and even if they're
all shorter you still want to leave that amount of space). For such a
case, you need only a single loop and no extra memory...:

for number in all_numbers:
formatted_string = your_favourite_format % number
on_the_left = formatted_string.find('.')
if on_the_left < 0: on_the_left = len(formatted_string)
padding = ' '*(left_total - on_the_left)
print '%s%s' % (padding, formatted_string)

(once again, you can trade off legibility for compactness, if you wish).
Alex
Jul 18 '05 #3
Enno Middelberg wrote:
I want to print out columns of numbers which are aligned at
the decimal point, eg:

123.45
3.0
65.765486


Those decimal points are not aligned on my display.

You can probably guess why: I'm using a proportional font, and spaces are
not as wide as digits.

So, in addition to the algorithmic tips you've gotten, you need to be sure
you're printing in a monospaced font such as Courier.

If you print in a proportional font, you need to use other means to align
the decimal points instead of padding with spaces.

-Mike
Jul 18 '05 #4
Peter, Alex, and Michael:
thanks for your suggestions and comments. I'll pick one of your
solutions depending on my needs.

Regards,

Enno
--
Remove "REMOVE_ME" for PM replies
Jul 18 '05 #5

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

Similar topics

7
by: Stan Brown | last post by:
http://www.acad.sunytccc.edu/instruct/sbrown/stat04/qz05_.htm A table comes near the beginning of the page. I have the <td> of row 1 column 1 styled in line with border-top:none and...
2
by: Brian van den Broek | last post by:
Hi all, I guess it is more of a maths question than a programming one, but it involves use of the decimal module, so here goes: As a self-directed learning exercise I've been working on a...
8
by: janice | last post by:
Hi all, I read a lot of info on this issue, but still don't get it. Why does this happen? document.write(".05" + " \+ " + ".05" + " \= " + (.05 + .05) + "<br>"); document.write("1.05" + "...
6
by: Dennis | last post by:
I am trying to align a column in DataGrid so the decimal's match up (not using fixed fonts). Is there anyone who has code for doing this using StringFormat or something else. Thanks. -- Dennis...
45
by: bobalong | last post by:
Hi I'm have some problem understanding how JS numbers are represented internally. Take this code for an example of weirdness: var biggest = Number.MAX_VALUE; var smaller = Number.MAX_VALUE...
5
by: kj | last post by:
I've tried *many* variations of the following: <TABLE> <TR><TD STYLE='text-align: "."; font-family: Courier'>0.12</TD></TR> <TR><TD STYLE='text-align: "."; font-family: Courier'>10.1</TD></TR>...
7
by: Gerard Flanagan | last post by:
All would anyone happen to have code to generate Cutter Numbers: eg. http://www1.kfupm.edu.sa/library/cod-web/Cutter-numbers.htm or is anyone looking for something to do?-) (I'm under...
1
by: Shailja | last post by:
Hi, How to do alignment of decimal point in Crystal Report? When I open the crystal report, numbers display in following manner: 100.16 10.16 Instead, if second number consists of 2 digits...
1
by: Twanne | last post by:
Hi, I've got some code in VBA where I calculate some numbers. Now some of them are large decimal numbers like -6,3216324E03. So in scientific notations. Now I need to add them to a table with an...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

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.