Write a program to print this triangle using loop:
*
**
***
****
*****
******
*******
********
*********
**********
Answers
Answered by
0
Answer:
Print ("triangle")
Loop loop poop
Answered by
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
Math,
3 months ago
Math,
3 months ago
Biology,
3 months ago
Physics,
7 months ago
Political Science,
11 months ago
Psychology,
11 months ago