Python と Java によって返される数値は同じです。
Python 2.7.3 を使用した IPython:
In [1]: 1.45751734864e+15/30933
Out[1]: 47118525478.93835
In [2]: 1.45751734864e+15/30933.0
Out[2]: 47118525478.93835
In [3]: 1.45751734864e+15/30933.0-4.711852547893835E10
Out[3]: 0.0
パイソン 3.3:
Python 3.3.0 (default, Mar 22 2013, 20:14:41)
[GCC 4.2.1 Compatible FreeBSD Clang 3.1 ((branches/release_31 156863))] on freebsd9
Type "help", "copyright", "credits" or "license" for more information.
>>> 1.45751734864e+15/30933
47118525478.93835
>>> 1.45751734864e+15/30933-4.711852547893835E10
0.0
>>>