print 3 + 2 + 1 - 5 + 4 % 2 - 1 / 4 + 6
Don't you have to do %
second after /
, +
, and -
?
Ex. 3 + 2 + 1 - 5 + (0) - (.25) + 6 = 6.75
Does Python round up to the nearest whole number?
print 3 + 2 + 1 - 5 + 4 % 2 - 1 / 4 + 6
Don't you have to do %
second after /
, +
, and -
?
Ex. 3 + 2 + 1 - 5 + (0) - (.25) + 6 = 6.75
Does Python round up to the nearest whole number?