I have a numpy array like this:
a = [[0.04393, 0.0, 0.0], [0.04393, 0.005, 0.0], [0.04393, 0.01, 0.0],[0.04393, 0.015, 0.0]]
And i want to format it in this:
b = [((0.04393, 0.0, 0.0), ), ((0.04393, 0.005, 0.0), ), ((0.04393,
0.01, 0.0), ), ((0.04393, 0.015, 0.0), )]
How can i do it?
0.14625come from?