How to use 'python only show 2 decimals' in Python

Every line of 'python only show 2 decimals' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
42def test_formatDecimals(self):
43 decimalNumber = '12.34'
44 decimalNumberWithMoreDecimals = '12.345678'
45 integerNumber = '12'
46 self.assertEqual(decimalNumber, formatDecimals(decimalNumberWithMoreDecimals))
47 self.assertEqual('12.00', formatDecimals(integerNumber))
48 self.assertEqual(decimalNumberWithMoreDecimals, formatDecimals(decimalNumberWithMoreDecimals, 6))

Related snippets