Computer Science, asked by smartboy4155, 6 months ago

Write a Python program to print the above pattern.​

Attachments:

Answers

Answered by innovatived65
1

Answer:

use loop

Explanation:

for(int i=1;i<=5;i++)

Answered by vikhyat04
1

for i in range(1,7):

    for j in range(1,i):

          print(j,end="")

    print()

Similar questions