What is the output of the following statement if tuple t=(1,2,3,4)? t[1:]
Answers
Answered by
0
Explanation: Tuple slicing exists and a[1:-1] returns (2,3).
Similar questions