Computer Science, asked by shrutiverma383, 1 year ago

Write a python program for the following series using nested loop

Attachments:

Answers

Answered by shrinandh1236
2

Answer:

k=1

for i in range(3):

   for j in range(4):

       print(k,end='  ')

       k=k+1

   print("")

Explanation:

the first for loop brings a new row, whereas the second for loop just prints them.

Similar questions