So, let's say I have this for loop:
columns = 12
num=0
for num in range(0, columns+1):
print(f"{num:>5d}", end=" ")
and I want to skip a line \n on the last iteration of the for loop. Is there a way to let the for loop know that this is the last time it will run? I wanna skip a line after the last number prints instead of just adding a space.
Thanks!