Skip to content

Instantly share code, notes, and snippets.

@slallum
Forked from anonymous/pasten_bakernel.py
Last active December 10, 2015 03:08
Show Gist options
  • Save slallum/4372530 to your computer and use it in GitHub Desktop.
Save slallum/4372530 to your computer and use it in GitHub Desktop.
def p(x, bound1, bound2):
return min(max(x, bound1), bound2)
if __name__ == '__main__':
print(p(5, 2, 7))
sys.exit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment