How to convert a list into list with 5 decimal places?
list1 = [0.23400000000, 0.3456222222, 0.1278234, 0.78433333]
Expecting:
list1 = [0.23400, 0.34562, 0.12782, 0.78433]
I don not expect 0.34562 to be 0.34561, i need to preserve values as it is but with 5 decimal points.