Programming Examples
Python program to increment the elements of list
Write a python program to increment the elements of a list with a number.
Output/ Explanation:
Enter any List[5,7,8,4]
Before increment list is [5, 7, 8, 4]
After increment list is [6, 8, 9, 5]