Write a function called first_last that takes a single parameter, seq, a sequence. first_last should return a tuple of length 2, where the first item in the tuple is the first item in seq, and the second item in tuple is the last item in seq.
Answers (1)