Write a program to increment elements of a list by 5. a=[10,20,30,40,50]
print("actual list",a)
for i in range(len(a)):
a[i]+=5
print("after increment",a) Output: = RESTART: C:/Users/rainb/OneDrive/Documents/Desktop/1.py =
actual list [10, 20, 30, 40, 50]
after increment [15, 25, 35, 45, 55] 2. Write a menu driven program to perform any four…