Python Math: Print number with commas as thousands separators
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:
Flowchart:
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics