1 2 3 4 5 6 7 8 9
for row in range(10): for j in range(row): print(" ", end=" ") for j in range(10 - row): print(j, end=" ") print()