Skip to content

Instantly share code, notes, and snippets.

@zenubis
Created May 25, 2017 02:49
Show Gist options
  • Save zenubis/16712f51c0a4b8d883a89414f8d4411f to your computer and use it in GitHub Desktop.
Save zenubis/16712f51c0a4b8d883a89414f8d4411f to your computer and use it in GitHub Desktop.
def round(n, m):
return ((n+(m-1)) / m) * m
for x in xrange(0,50):
print x, "=>", round(x, 10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment