It is possible to use the positions of inverted form, array [-1], array [-2], and so on. Example:
array = [1,2,3,4,5]
print(array[-1])
#O retorno será '5'
print(array[-2])
#O retorno será '4'
Then:
mod_elasticidade = tensao[-1]
If you want to do it using the len()
function you can also get an error because the len()
function returns the number of elements counting from 1:
array = [1,2,3,4,5]
print(len(array))
#O retorno será '5'
The positions are counted from 0, and in this example they range from 0 to 4:
array = [1,2,3,4,5]
#A posição 0 é o 1, a 1 é o 2, e assim em diante
print(array[0])
#O retorno será '1'
print(array[4])
#O retorno será '5'
Then:
ultimo = len(tensao)-1 # -1, para reduzir essa diferença
mod_elasticidade = tensao[ultimo]