mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 14:28:05 +02:00
6 lines
No EOL
101 B
Python
6 lines
No EOL
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 |