All problems
EasyPython Basics
Format rupees
Print a price in Indian rupee format with two decimals — e.g. ₹1,234.50.
- #strings
- #format
Sample input
amount = 1234.5
Sample output
₹1,234.50
rupee-format.py
Output
Press "Run code" to execute.
Loading…
Print a price in Indian rupee format with two decimals — e.g. ₹1,234.50.
amount = 1234.5
₹1,234.50
Press "Run code" to execute.