11. Following expression does not report an error even if it has a sub-expression with ‘divide by zero’ problem :
What changes can you make to above expression so that Python reports this error ?
What changes can you make to above expression so that Python reports this error ?
# Output s = “12345” ans = sum(int(s[i]) for i in range(5)) print(ans)