Python 3 only: assert 3 / 2 == 1.5. # Python 2 and 3: from __future__ import division # (at top of module) assert 3 / 2 == 1.5.
確定! 回上一頁