In [2]: list=range(627)
In [3]: list[::150]
Out[3]: [0, 150, 300, 450, 600]
the above code is right,but if i use the bellow code,caution:the l means long type, the return result is not like above,what's the hell?
In [4]: list=[1323l,123123l,4444l,12312312l]
In [5]: list=[1323l,123123l,4444l,12312312l]
In [6]: list[::2]
Out[6]: [1323L, 4444L]