I want to create this from multiple arrays, best using NumPy:
1 0 0 0 0 0
1 1 0 0 0 0
1 1 1 0 0 0
1 1 1 1 0 0
1 1 1 1 1 0
1 1 1 1 1 1
However, I prefer if a library is used to create this, how do I go about doing this?
Note: NumPy can be used to create the array as well.
There are a lot of answers on SO, but they all provide answers that do not use libraries, and I haven't been able to find anything online to produce this!