hope you are all doing fine. I just want to know what is runtime complexity for this case? and is the run time complexity for all cases such as dictionary, list, tuple and etc... to extract of the end of these things with [-1] the same? i had searched in many pages but i didn't find it.
list = [1,2,3]
print(list[-1])
>>> 3