43.5k views
2 votes
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. If seq is empty, the function should return an empty tuple. If seq has only one element, the function should return a tuple containing just that element.

User Garcon
by
7.5k points

1 Answer

3 votes

Answer:

The Python code with the function is given below. Testing and output gives the results of certain chosen parameters for the program

Step-by-step explanation:

def first_last(seq):

if(len(seq) == 0):

return ()

elif(len(seq) == 1):

return (seq[0],)

else:

return (seq[0], seq[len(seq)-1])

#Testing

print(first_last([]))

print(first_last([1]))

print(first_last([1,2,3,4,5]))

# Output

( )

( 1 , )

( 1 , 5 )

User Dschulz
by
7.9k points