Advertisement
Guest User

evenodd

a guest
May 8th, 2012
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. def evenodd(li):
  2.     i = 0
  3.     j = 0
  4.     while i < len(li):
  5.         if not li[i] & 1:
  6.             li[i],li[j] = li[j],li[i]
  7.             j += 1
  8.         i += 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement