Arrays are a convenient way to hold a series of numbers that are all alike, for example, all of the values of the position and corresponding time values for the trajectory of the object. In Python, we...Arrays are a convenient way to hold a series of numbers that are all alike, for example, all of the values of the position and corresponding time values for the trajectory of the object. In Python, we can define variables that hold arrays instead of a single value (arrays are called “lists” in Python): #define an array of values for the position of the object position = [0 ,1 ,4 ,9 ,16 ,25] #define an array of values for the corresponding times time = [0 ,1 ,2 ,3 ,4 ,5]