Question: In python, write a script file with a main method to produce the following arrays: A) an array of length 100 containing increasing sequences getting
In python, write a script file with a main method to produce the following arrays:
A) an array of length 100 containing increasing sequences getting longer and longer: array([0, 0, 1, 0, 1, 2, 0, 1, 2, 3, 0, 1, 2, 3, 4, 0, ... 6, 7, 8])
B) an array of length 100 containing the number of divisors of the numbers from 1 to 100: array([1, 2, 2, 3, 2, 4, 2, 4, 3, ... 6, 6, 9]). Hint: you can convert a list of integers to an array with np.array, or you can create an array of integers with np.arange and write over the entries one by one.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
