Answer:
Keeping the numeric values in a list makes it easier to apply the same computation to every data element.
Step-by-step explanation:
A list or array in programming is a data structure, that has the location for each item it holds indexed. It eliminates the need to constantly create a variable to compute items of the same data types.
The list can store items of the same data type and iterate over them to compute the same calculation on each of them.