Write a Python program to print the above pattern.
Attachments:
Answers
Answered by
1
Answer:
use loop
Explanation:
for(int i=1;i<=5;i++)
Answered by
1
for i in range(1,7):
for j in range(1,i):
print(j,end="")
print()
Similar questions
Math,
4 months ago
India Languages,
4 months ago
English,
4 months ago
Math,
8 months ago
Political Science,
8 months ago
Science,
1 year ago