Question: Python pls Create a function that recursively deletes an element of the tuple. If key not in tuple, it pop up KeyError def re_tup(tup, holder):

Python pls

Create a function that recursively deletes an element of the tuple. If key not in tuple, it pop up KeyError

def re_tup(tup, holder):

#Program should Not use for loop, use a recursive function

example output

print(re_tup((('alpha', 4), ('beta', 1), ('chalie', 3), ('delta', 2)), 'delta'))

will output = (('alpha', 4), ('beta', 1), ('chalie', 3))

print(re_tup((('alpha', 4), ('beta', 1), ('chalie', 3), ('delta', 2)), 'echo'))

will output = KeyError

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!