[ create a new paste ] login | about

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

Python, pasted on Sep 4:
1
2
3
4
myList = [2,4,6,8,10]
for x in range(10):
    if x not in myList:
        print x,


Output:
1
0 1 3 5 7 9


Create a new paste based on this one


Comments: