Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. >>> 6/3
  2. 2
  3. >>> 6//3
  4. 2
  5.  
  6. print (2/3) ----> 0 Python 2.7
  7. print (2/3) ----> 0.6666666666666666 Python 3.5
  8.  
  9. print (4/2) ----> 2 Python 2.7
  10. print (4/2) ----> 2.0 Python 3.5
  11.  
  12. from __future__ import division
  13. print (2/3) ----> 0.6666666666666666 #Python 2.7
  14. print (4/2) ----> 2.0 #Python 2.7
  15.  
  16. 138.93//3 ---> 46.0 #Python 2.7
  17. 138.93//3 ---> 46.0 #Python 3.5
  18. 4//3 ---> 1 #Python 2.7
  19. 4//3 ---> 1 #Python 3.5
  20.  
  21. >>> print 5.0 / 2
  22. 2.5
  23.  
  24. >>> print 5.0 // 2
  25. 2.0
  26.  
  27. >>> 7//3
  28. 2
  29.  
  30. >>>print 5//2
  31. 2
  32. >>> print 5.0//2
  33. 2.0
  34. >>>print 5//2.0
  35. 2.0
  36. >>>print 5.0//2.0
  37. 2.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement