Given that there is a list named numbers, which contains 100…

Given that there is a list named numbers, which contains 100 values, finish the following code. The point of the code is to add 5 to *each* item in the list. DO NOT attempt to address each value individually. Any/all work with the list must be done in the loop.  for i in range (0, 100, 1):    >