I'm working on a system which doesn't have the math
module available. All "Math" functions installed (math.ceil()
, math.round()
, etc all produce errors).
I have even tried using import math
which yields:
<type 'ImportError'>
__import__ not found
Current issue that is stumping me: How can I make a math calculation round up to a whole number without math.ceil
?