Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Not only Python. Try it in SQL Server 2012:
declare @A as float; declare @B as float; declare @C as float;
set @A = 0.0; set @B = -1.0; set @C = @A * @B;
print @C;
or PHP:
$A = -1.0 * 0.0; echo $A . "\n";