Guest User

Untitled

a guest
Jan 17th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. type(2.3) == float
  2. # True
  3.  
  4. type(2.3) == float or type(2.3) == decimal.Decimal
  5. # True
  6.  
  7. isinstance(2.3, float)
  8. # True
  9.  
  10. isinstance(2.3, (float, decimal.Decimal))
  11. # True
  12.  
  13. 2.3.is_integer()
  14. # False
Add Comment
Please, Sign In to add comment