WAP to print the following pattern[PYTHON]
@@@@@
@@@@
@@@
@@
@
Answers
Answered by
0
Answer:
for i in range(6):
print('@'*i)
Similar questions