If n = 19.879287624
then how to change it into n = 19.87
without using format, which means n remains a float and not a string. Obviously, round is irrelevant since it returns 19.88 and not 19.87. I checked other similar questions but most of answers were using format and the rest (without using format) were not clear enough.
Thanks.