division
- division
print 3/2 # 1
from __future__ import division
print 3/2 # 1.5
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
print 3/2 # 1
from __future__ import division
print 3/2 # 1.5