I have the below list:
list =[5,10,15,20,25,30]
...and I would like to keep the same list but have its elements increased by 5. How could we do this without creating a new list? What kind of loop should I create for this? Is there another way?
Thanks!