Is there a way to print the values of list A in a vertical column format? I present the current and expected outputs.
A=[0.021090000000000005, 0.019535125946503053, 0.019398647830541613]
print(A)
The current output is
[0.021090000000000005, 0.019535125946503053, 0.019398647830541613]
The expected output is
[0.021090000000000005,
0.019535125946503053,
0.019398647830541613]