What would be the output? If there is an error, select “ERRO…
What would be the output? If there is an error, select “ERROR” def change(nums): if len(nums) == 0: return [] return [nums[0] + 1] + change(nums[1:])result = change([3, 5, 2])print(result[-1])
Read Details