Ken Liao It looks like there are two kinds of minus signs. “-” and “−” 2e-3 gets interpreted as 2*10^-3 2e−3 gets interpreted as 2*e-3 Unfortunately, it prints the result of 2e-3 as 2e−3, so if you copy and paste the result, you get the different answer. Seems broken to me. 2021-09-24T00:23:00+00:00
It looks like there are two kinds of minus signs. “-” and “−”
2e-3 gets interpreted as 2*10^-3
2e−3 gets interpreted as 2*e-3
Unfortunately, it prints the result of 2e-3 as 2e−3, so if you copy and paste the result, you get the different answer. Seems broken to me.