Home / Programs / Display float number with 2 decimal places using print()
🚀 Programming Example

Display float number with 2 decimal places using print()

👁 840 Views
💻 Practical Program
📘 Step Learning

Display float number with 2 decimal places using print()

📌 Information & Algorithm

Given Input:

num = 458.541315

Expected Output:

458.54

Use the %.2f formatting code in print() function to format float number to two decimal places.

💻 Program Code

num = 458.541315
print('%.2f' % num)
                        

🖥 Program Output

58.54
                            
📚 Learning Subject

Master Programming Through Practical Examples

Improve your coding logic, problem-solving skills and programming confidence by practicing real-world examples with explanations.

🎯 How to learn from this example

First understand the algorithm carefully. Then study the program line-by-line and compare it with the output. Finally, review the explanation section to strengthen your logic and programming understanding.

🔥 Practice suggestion

Rewrite the program without looking at the code. Modify values, conditions or logic and run it again. This helps improve confidence and strengthens coding skills much faster.