Mathematical Operation
Python follow Bodmas rule for mathematical operations.
Math=2+3*9/6-4
here as per bodmas rule multiplication will happen and then division and addition and subtraction .Â
math=2+3*9/6-4
print (math)
2.5
Mathematical Operation
Python follow Bodmas rule for mathematical operations.
Math=2+3*9/6-4
here as per bodmas rule multiplication will happen and then division and addition and subtraction .Â
math=2+3*9/6-4
print (math)
2.5