Question Solved: Write a function called nested_sqrt which takes a nested list of integers as an input, finds the square root of each number (revisit lecture 9) and returns the sum

$30.00 $24.00

Quantity

You'll get a: . zip file solution : immediately, after Payment

Description

Question Solved: Write a function called nested_sqrt which takes a nested list of integers as an input, finds the square root of each number (revisit lecture 9) and returns the sum

5/5 - (5 votes)

Python

Write a function called nested_sqrt which takes a nested list of integers as an input, finds the square root of each number (revisit lecture 9) and returns the sum. (80 points for coding)

Example:

input: a= [ 4, [9, 16], 64]

print(nested_sqrt(a))

17

0