Question: PYTHON 3 The arbitrary Arithmetic sequence is one of the sequences your program must support. The arbitrary Arithmetic sequence generating function will need to ask
PYTHON 3
The arbitrary "Arithmetic" sequence is one of the sequences your program must support. The arbitrary Arithmetic sequence generating function will need to ask the user for the first value in the sequence and then ask for the value that must be added to each previous element to produce the next element in the sequence. As a clarifying example, if the user provides the values 5 and 3, then the first six elements of the arbitrary Arithmetic sequence would be 5, 8, 11, 14, 17, 20. Write a function that takes the desired length of the sequence as an argument and produces (as a return value) a list of the elements of the arbitrary Arithmetic sequence of that length. The arbitrary Arithmetic sequence generating function you write must be NONRECURSIVE.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
