Skip to content

Instantly share code, notes, and snippets.

@markuz
Created November 2, 2016 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markuz/1587bf94967015ff8bd1942a31d7df86 to your computer and use it in GitHub Desktop.
Save markuz/1587bf94967015ff8bd1942a31d7df86 to your computer and use it in GitHub Desktop.
Python odds
numbers = [12, 37, 5, 42, 8, 3]
even = []
odds = []
for num in numbers:
if num % 2: # non-zero result
odds.append(num)
continue
even.append(num)
print even
print odds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment