Edit: I saw the two similar questions but I didn't get my answer.
I want to square some numbers with 4 numbers after the decimal point:
import math
lis=math.sqrt(19)
print("%.4f" % lis)
sqrt(19)=4.35889894
so the output will be:
4.3589
and I want it to be:
4.3588
without rounding up. What do I do?