Python |Program to find the Sum of number digits in List

Python |Program to find the Sum of number digits in List

2 Likes

This question basically means you have to add the digits .
Example
list1 = [11, 25, 11, 62, 89, 30, 10]

So the output list will be [ 2,7,2,8,17,3,1]

@mekala.akhil2468

image