Guest User

Untitled

a guest
Feb 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. a = 1.5
  2. b = -1.5
  3. import math
  4. print (math.floor(a))
  5. print (math.ceil(a))
  6. print (math.floor(b))
  7. print (math.ceil(b))
  8. print (int(a))
  9. print (int(b))
  10. print (round(a))
  11. print (round(b))
Add Comment
Please, Sign In to add comment