Answer to Question #225221 in Python for raj

Question #225221

N as a starting number and K as input, write a program to print a number pyramid of K rows as shown below.Input

The first line of input is an integer


N. The second line of input is an integer K.Explanation

In the example, the given starting number is

10, and the number of rows in the pyramid is 5.So, the output should be


10

11 12

13 14 15

16 17 18 19

20 21 22 23 24


1
Expert's answer
2021-08-11T06:27:02-0400
n = int(input())
k = int(input())
for r in range(k):
    print(*[n + i for i in range(r + 1)])
    n += r + 1

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS