Computer Science, asked by Yaisrdero123gmailcom, 7 months ago

Write a program to print this triangle using loop:

*

**

***

****

*****

******

*******

********

*********

**********

Answers

Answered by anupnoah02
0

Answer:

Print ("triangle")

Loop loop poop

Answered by araj13
1

rows=int(input("Please enter the total number of rows:"))

for i in range(1,rows+1):

for j in range(1,i+1):

print('*', end=' ')

print()

Plz follow me

And mark me as brainliest

i'll follow u back

Similar questions