Skip to content

Instantly share code, notes, and snippets.

@hkulekci
Created May 7, 2014 13:53
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 hkulekci/7cd212d2a1605155fa8d to your computer and use it in GitHub Desktop.
Save hkulekci/7cd212d2a1605155fa8d to your computer and use it in GitHub Desktop.
Ceil Method Usage Example
>>> from math import ceil
>>> ceil(1.3)
2.0
>>>
>>>
>>> ceil(1.00002)
2.0
>>> ceil(48/45)
1.0
>>> 48/45
1
>>> 48.0/45.0
1.0666666666666667
>>> ceil(48.0/45.0)
2.0
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment