Snippet
def list_length(my_input: list[str]) -> int: if len(my_input) == 0: return 0 else: my_input.pop(0) return 1 + list_length(my_input) a: list[str] = ["Tar", "Heels", "!"] list_length(a)
Solution
Image Description
(Coming Soon)