Computer Science, asked by pkaushikram, 2 months ago

WAP to print the following pattern[PYTHON]
@@@@@
@@@@
@@@
@@
@

Answers

Answered by gaganadithyareddy9
0

Answer:

for i in range(6):

   print('@'*i)

Similar questions