w3resource

Python Math: Print number with commas as thousands separators

Python Math: Exercise-26 with Solution

Write a Python program to display numbers separated by commas as thousands.

Sample Solution:

Python Code:

print("{:,}".format(1000000))
print("{:,}".format(10000))

Sample Output:

1,000,000                                                                                                     
10,000

Pictorial Presentation:

Python Math: Print number with commas as thousands separators

Flowchart:

Flowchart: Print number with commas as thousands separators

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program for nth Catalan Number.
Next: Write a Python program to calculate distance between two points using latitude and longitude.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.