Computer Science, asked by krishnavijay761, 8 months ago

oint
how do you access the last element of the tuple: A=(0,1,2,3)
A[3]
A[O]
A(-1]
A[end]​

Answers

Answered by StephenDeva
5

Answer:

Use Negative index.. Bro

Explanation:

Try this,

print("Last element is:", A[-1])

Hope it will works.. Please like the answer if it helps

Answered by zeeshankhan316
0

Answer:

A[3]

A[-1]

Explanation:

Similar questions