mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
6 lines
101 B
Python
6 lines
101 B
Python
|
>>> 0.1*0.1*0.3
|
||
|
0.0030000000000000005
|
||
|
>>> (0.1*0.1)*0.3
|
||
|
0.0030000000000000005
|
||
|
>>> 0.1*(0.1*0.3)
|
||
|
0.003
|