Python Practical
Python Practical
Write a python script to calculative sum of a list, the problem statement asks to produce a new list whose ith elements
will be equal to the sum of the ( i + 1) elements.
Sample input & output
I/P: [2,6,8,3,1]
O/P: [2,8,16,19,20]
Write a python script to print and write in file all prime numbers in an interval between the range which is entered by
user.
Write a python script to Check enter number is Armstrong Number or not, also find first 3 Armstrong from
given range if not found then show appropriate message to user.