Python: Print the following floating numbers upto 2 decimal places
Print numbers with 2 decimal places.
Write a Python program to print the following numbers up to 2 decimal places.

Sample Solution:
Python Code:
Sample Output:
Original Number: 3.1415926 Formatted Number: 3.14 Original Number: 12.9999 Formatted Number: 13.00
Flowchart:

For more Practice: Solve these Related Problems:
- Write a Python program to format a list of floats to two decimal places using f-strings.
- Write a Python program to use the format() method to print numbers with exactly two decimals.
- Write a Python program to iterate over a list of floating-point numbers and print each rounded to two decimal places.
- Write a Python program to use the round() function within a loop to display each number with 2 decimal precision.
Go to:
Previous: Write a Python program to set the indentation of the first line.
Next: Write a Python program to print the following floating numbers upto 2 decimal places with a sign.
Python Code Editor:
Contribute your code and comments through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.