[ create a new paste ] login | about

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

Python, pasted on Jun 27:
1
2
3
4
5
6
7
#! /usr/bin/python
# encodign: utf8
import sys

if __name__ == "__main__":
    if len(sys.argv) == 2:
        print [x for x in range(1, int(sys.argv[1])) if x % 3 == 0]


Output:
No errors or program output.


Create a new paste based on this one


Comments: