Given this code:
columns = 12
num = 0
for num in range(0, columns+1):
print(f"{num:>5d}", end=" ")
How can I let the for loop know that this is the last time it will run, so that I can add a newline after the entire output (instead of a space)?