I have an array:
a = [0.313767818199811, 0.169656461527218, 0.934219696497667]
When I do
print a
[0.313767818199811, 0.169656461527218, 0.934219696497667]
print a[0]
0.3137678182
I need to preserve all the digits of each number in an array. I need a[0]
to equal 0.313767818199811
Whats the best way to tell python to preserve the digits?