Computer Science, asked by rautshiv19, 2 months ago

write a python program to print
@ @ @ @ @
@ @ @ @
@ @ @
@ @
@

Answers

Answered by atulkumargpt
2

Answer:

for i in range(5, 0,-1) :

print("@"*i)

Answered by kunjika158
0

Source Code

# This program prints @

print('@')

Output

@

Similar questions