Use python 2.7 for this exercise.
In this exercise, the weaving process is programmed into aNumberRow class. For this exercise create a class NumberRow whichat least includes a method weave(number_row), which weaves oneNumberRow with another. The problem to solve is extended to includea third series of numbers. The goal of this exercise is to weavethe first and second series into a single series and consecutivelyweave a third series through the resulting series. The examplebelow illustrates the desired behaviour..
1 2 3 4 5 6 7 8 9 10
10 9 8 7 6 5 4 3 2 1
1 10 2 9 3 8 4 7 5 6 6 5 7 4 8 3 9 2 10 1
Expert Answer
Answer to Use python 2.7 for this exercise. In this exercise, the weaving process is programmed into a NumberRow class. For this e…