[ create a new paste ] login | about

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

Python, pasted on Oct 15:
1
2
3
4
5
6
x = 0
for i in [1,2,3,4,5]:
    if x == i:
        continue
    x += i 
print "x:", x


Output:
1
x: 12


Create a new paste based on this one


Comments: