I am making a program to make an expected output like this:
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?
I am making a program to make an expected output like this:
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?