0

I am making a program to make an expected output like this:

Just a pattern of the @ symbol

I have all the code:

a=1
while a!=6:
    for n in range(a):
        print("@")
    a=a+1

but I need to make a newline after the for loop runs each time. Is there a way to do this?

Athreya Daniel
  • 101
  • 1
  • 10

0 Answers0