Write a Python program that reads a number and finds the sum of the series
of 1 + 33 + 111 + 3333 +....+N terms. Then it puts the reverse digit of the sum to a list and prints it. [Cannot use built-in reverse() or reversed()]
Sample Input 1:
5
Sample Output 1:
Sum of series: 14589 Reverse sum of series in list: [9, 8, 5, 4, 1]
Comments