Sorry! Posting Assignment is allowed only for commercial accounts.
What will be the output of the following code snippet?a = [1, 2, 3, 4, 5]sum = 0for ele in a: sum += ele print(sum)