Skip to content

Instantly share code, notes, and snippets.

@schmichael
Last active August 29, 2015 14:02
Show Gist options
  • Save schmichael/15cb027c94fdf51257ae to your computer and use it in GitHub Desktop.
Save schmichael/15cb027c94fdf51257ae to your computer and use it in GitHub Desktop.
def add1(x):
return x + 1
def is_even(x):
return x % 2 == 0
a = 1
b = add1(a)
c = is_even(b)
print(c)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment