Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

python Write a function number_pyramid (row) to generate a numpy array of number pyramid. The input row indicates the number of rows in the pyramid.

image text in transcribed

python

Write a function number_pyramid (row) to generate a numpy array of number pyramid. The input row indicates the number of rows in the pyramid. For example, number_pyramid (3) will give [[00100] [0 1 2 1 0] [1 2 3 2 1]] And number_pyramid (10) will give [[ 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 [0 0 0 0 0 0 0 0 1 2 1 0 0 0 0 0 0 0 0] 0] [ 0 0 0 0 0 0 0 1 2 3 2 1 0 0 0 0 0 0] [0 0 0 0 0 0 1 2 3 3 2 1 0 0 0 0 0 0] [0 0 0 0 0 1 2 3 4 4 5 4 3 2 1 0 0 0 0] [0 0 0 0 1 2 3 5 6 5 3 2 1 0 0 0 0] [0 0 0 1 2 3 4 5 6 7 6 5 3 2 1 0 0] [0 0 1 2 3 4 5 6 7 8 7 7 5 4 3 2 1 0 0] [0 1 2 3 4 5 6 7 8 9 8 7 6 5 3 2 1 0] 11 2 3 5 6 7 8 9 10 9 CD 7 6 5 3 1]]

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Transact SQL Cookbook Help For Database Programmers

Authors: Ales Spetic, Jonathan Gennick

1st Edition

1565927567, 978-1565927568

More Books

Students also viewed these Databases questions