Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6667165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:54:16+00:00 2026-05-26T02:54:16+00:00

I have some Python code that looks something like this: rates = {3: [((17500,

  • 0

I have some Python code that looks something like this:

rates = {3: [((17500, 99999), Decimal('23425.00'), Decimal('7234.24'))],
         4: [((    0,  3510), Decimal( '4563.00'), Decimal('5234.00')),
             (( 3510, 17500), Decimal('34578.00'), Decimal('3464.50')),
             ((17500, 99999), Decimal('18268.00'), Decimal('5734.66'))],
         5: [((17500, 99999), Decimal('83564.00'), Decimal('3475.60'))]}

Note that the decimal values are aligned around the decimal point, while the integers are right-aligned.

Is there some software that can perform this kind of complex alignment in an automated fashion? I’d be interested in anything that gets close, even if it can’t match the above exactly.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T02:54:17+00:00Added an answer on May 26, 2026 at 2:54 am

    (NOTE: I do not consider the following particularly sane.)

    For the most part if you just typed out (most editors will help you align your dict and list items) your original code you should get something like this:

    rates = {3: [((17500, 199999), Decimal('23425.00'), Decimal('7234.245'))],
             4: [((0, 3510), Decimal('4563.00'), Decimal('5234.00')),
                 ((3510, 17500), Decimal('34578.00'), Decimal('464.50')),
                 ((17500, 99999), Decimal('18268.00'), Decimal('5734.66'))],
             15: [((17500, 99999), Decimal('83564.00'), Decimal('3475.60'))]}
    

    (I’ve made some values longer and some shorter to add a little more quirkiness.)

    With the Tabular plugin for Vim, executing the following commands in order over the above code (you may want to visually block it) will format the above code in a way that matches your original question:

    :Tab /^[^[(]*\zs[[(]/l0
    :Tab /^[^(]*\zs(/l0
    :Tab /(\zs\d\+\s*,/l0r1
    :Tab /,\s*\zs\d\+)/l1r0
    :Tab /['"]\d*\ze\.\d*['"]/l0r0
    

    The operations are:

    1. Align the first [s and (s.
    2. Align the first (s, this fixes the misalignment from the first operation.
    3. Right-align the (17500,-like values on ,.
    4. Right-align the , 99999)-like values on ,.
    5. Align the '4563.00'-like values on ..

    You could make a mapping for use in normal and visual mode:

    noremap <leader>ff :Tab /^[^[(]*\zs[[(]/l0<CR>
                      \:Tab /^[^(]*\zs(/l0<CR>
                      \:Tab /(\zs\d\+\s*,/l0r1<CR>
                      \:Tab /,\s*\zs\d\+)/l1r0<CR>
                      \:Tab /['"]\d*\ze\.\d*['"]/l0r0<CR>
    

    Final result:

    rates = {3:  [((17500, 199999), Decimal('23425.00'), Decimal('7234.245'))],
             4:  [((    0,   3510), Decimal( '4563.00'), Decimal('5234.00')),
                  (( 3510,  17500), Decimal('34578.00'), Decimal( '464.50')),
                  ((17500,  99999), Decimal('18268.00'), Decimal('5734.66'))],
             15: [((17500,  99999), Decimal('83564.00'), Decimal('3475.60'))]}
    

    Obviously the effectiveness of these operations depends on the structure and original formatting of the code but hopefully this inspires you.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a python ndarray temp in some code I'm reading that suffers this:
I have some Python code that works correctly when I use python.exe to run
I have some old python code that uses the pywin32 extensions. Starting out with
I have some code in a python string that contains extraneous empty lines. I
Suppose I have a function that performs some task (this is in Python pseudocode):
I have a string that looks like this: Name1=Value1;Name2=Value2;Name3=Value3 Is there a built-in class/function
I'm working on some Django-code that has a model like this: class Status(models.Model): code
I have created some python code which creates an object in a loop, and
I have some really nice Python code to do what I need to do.
What exactly are the Python scoping rules? If I have some code: code1 class

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.