[ create a new paste ] login | about

Link: http://codepad.org/Tvr2oUIm    [ raw code | output | fork ]

Python, pasted on Aug 14:
1
2
3
4
5
print("       0")  
print("      0"*2)
print("     0"*3)
print("    0"*4)
print("   0"*5)


Output:
1
2
3
4
5
       0
      0      0
     0     0     0
    0    0    0    0
   0   0   0   0   0


Create a new paste based on this one


Comments: