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

  • SEARCH
  • Home
  • 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 649715
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T21:58:27+00:00 2026-05-13T21:58:27+00:00

What is a good way to format a python decimal like this way? 1.00

  • 0

What is a good way to format a python decimal like this way?

1.00 –> ‘1’
1.20 –> ‘1.2’
1.23 –> ‘1.23’
1.234 –> ‘1.23’
1.2345 –> ‘1.23’

  • 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-13T21:58:28+00:00Added an answer on May 13, 2026 at 9:58 pm

    If you have Python 2.6 or newer, use format:

    '{0:.3g}'.format(num)
    

    For Python 2.5 or older:

    '%.3g'%(num)
    

    Explanation:

    {0}tells format to print the first argument — in this case, num.

    Everything after the colon (:) specifies the format_spec.

    .3 sets the precision to 3.

    g removes insignificant zeros. See
    http://en.wikipedia.org/wiki/Printf#fprintf

    For example:

    tests=[(1.00, '1'),
           (1.2, '1.2'),
           (1.23, '1.23'),
           (1.234, '1.23'),
           (1.2345, '1.23')]
    
    for num, answer in tests:
        result = '{0:.3g}'.format(num)
        if result != answer:
            print('Error: {0} --> {1} != {2}'.format(num, result, answer))
            exit()
        else:
            print('{0} --> {1}'.format(num,result))
    

    yields

    1.0 --> 1
    1.2 --> 1.2
    1.23 --> 1.23
    1.234 --> 1.23
    1.2345 --> 1.23
    

    Using Python 3.6 or newer, you could use f-strings:

    In [40]: num = 1.234; f'{num:.3g}'
    Out[40]: '1.23'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is a good way of writing something like this in one line. The
what would be a good way to format this piece of code? UIBarButtonItem *prev
Wondering what the best / good way of doing this would be in jQuery.
I am sure there is a good way of solving this, but it's something
It looks like hg out --patch or hg out -p is a good way
Is this a good way of formatting for JSP files? How can I change
I'm currently trying to come up with a good and accessible way to format
Is there a good way to see what format an image is, without having
Whats a good way to check a date format, i want the format to
I was wondering if anyone knew of a good way to format files sizes

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.