Skip to content

Instantly share code, notes, and snippets.

@kaworun
Created January 23, 2013 10:12
Show Gist options
  • Save kaworun/4603969 to your computer and use it in GitHub Desktop.
Save kaworun/4603969 to your computer and use it in GitHub Desktop.
x = math.max(200, 173, 37)
print(x)
x = math.min(2, 83, 927)
print(x)
x = math.ceil(273.7)
print(x)
x = math.floor(21.3)
print(x)
x = math.random(13)
print(x)
x = math.random(1, 29)
print(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment