
November 22nd, 2012, 01:47 AM
|
|
Registered User
|
|
Join Date: Nov 2012
Posts: 6
Time spent in forums: 1 h 40 m 34 sec
Reputation Power: 0
|
|
Hi
im new to Programming python, i've started using the unit test function, and im about to assert a float.
i know how to use the first one:
self.assertEqual(first, second, msg)
but i need this one:
self.assertAlmostEqual(first, second, places, msg, delta)
and here is my question, as gar as i know delta is the precision i want, but what is places?
|