Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. import math
  2. print (int(7/2), int(-7/2))
  3. print (round(7/2), round(-7/2))
  4. print (math.trunc(7/2), math.trunc(-7/2))
  5. print (math.floor(7/2), math.floor(-7/2))
  6. print (math.ceil(7/2), math.ceil(-7/2))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement