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 8314523
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T20:50:51+00:00 2026-06-08T20:50:51+00:00

In Python, how can I do multiple formats at once: So I want to

  • 0

In Python, how can I do multiple formats at once:

So I want to make a number have no decimal places and have a thousands separator:

num = 80000.00

I want it to be 80,000

I know I can do these two things serepatly, but how would I combine them:

"{:,}".format(num) # this will give me the thousands separator
"{0:.0f}".format(num) # this will give me only two decimal places

So is it possible to combine these together??

  • 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-06-08T20:50:53+00:00Added an answer on June 8, 2026 at 8:50 pm

    You can combine the two format strings. The comma goes first after the colon:

    >>> "{:,.0f}".format(80000.0)
    '80,000'
    

    Note that you can also use the free format() function instead of the method str.format() when formatting only a single value:

    >>> format(80000.0, ",.0f")
    '80,000'
    

    Edit: The , to include a thousands separator was introduced in Python 2.7, so the above conversions don’t work in Python 2.6. In that version you will need to roll your own string formatting. Some ad-hoc code:

    def format_with_commas(x):
        s = format(x, ".0f")
        j = len(s) % 3
        if j:
             groups = [s[:j]]
        else:
             groups = []
        groups.extend(s[i:i + 3] for i in range(j, len(s), 3))
        return ",".join(groups)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In Python you can have multiple iterators in a list comprehension, like [(x,y) for
I want to write a server that can accept multiple clients in python (twisted).
How can i open file in python and write to it multiple times? I
Very new to python and can't understand why this isn't working. I have a
So I have this table, and I want to go through in Python, and
Requirements : I have a Python project which parses data feeds from multiple sources
Google App Engine has the concept of app versions. i.e., you can have multiple
So, Python functions can return multiple values. It struck me that it would be
I'm quite new to Python in general. I'm aware that I can create multiple
I can't seem to find any python libraries that do multiple regression. The only

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.