Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python don't divide
#9
Python 2.x defaults to integer division.

Python 3.x uses floating point division.

Since Python 2.2, it has been possible to write code compatible with both Python 2 and 3 by using "from __future__ import division" to change the default behavior to use floating point division and using "//" to get integer division.

$ python
Python 2.7.14 (default, Sep 23 2017, 22:06:14) 
[GCC 7.2.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> 3/4
0


$ python3
Python 3.6.3 (default, Oct  3 2017, 21:45:48) 
[GCC 7.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 3/4
0.75


$ python2
Python 2.7.14 (default, Sep 23 2017, 22:06:14) 
[GCC 7.2.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from __future__ import division
>>> 3/4
0.75
>>> 3//4
0
>>> 
Reply


Messages In This Thread
Python don't divide - by SteLu - Dec-20-2017, 08:39 PM
RE: Python don't divide - by j.crater - Dec-20-2017, 08:58 PM
RE: Python don't divide - by Afterdarkreader - Dec-20-2017, 09:02 PM
RE: Python don't divide - by SteLu - Dec-21-2017, 01:24 AM
RE: Python don't divide - by Larz60+ - Dec-21-2017, 03:20 AM
RE: Python don't divide - by SteLu - Dec-21-2017, 10:29 AM
RE: Python don't divide - by Larz60+ - Dec-21-2017, 01:01 PM
RE: Python don't divide - by SteLu - Dec-21-2017, 01:20 PM
RE: Python don't divide - by casevh - Dec-21-2017, 02:58 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Divide a number by numbers in a list. Wallen 7 8,059 Feb-12-2022, 01:51 PM
Last Post: deanhystad
  how to divide one big equation entered as a string to small chunks gungurbuz 1 1,625 May-28-2020, 03:46 PM
Last Post: Larz60+
  Python calculator divide by zero help dock1926 4 5,867 Jan-20-2020, 05:15 PM
Last Post: michael1789
  how to divide array number chinting 5 2,891 Dec-30-2019, 11:29 AM
Last Post: ibreeden

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020