last digit of array python

Solutions on MaxInterview for last digit of array python by the best coders in the world

showing results for - "last digit of array python"
Angelo
27 Mar 2017
1>>> array = [0.0021, 0.12, 0.1224, 0.22]
2>>> array[-1]
30.22
4>>>