Python Arithmetic
Expression syntax is straightforward: the operators +, -, * and / work just like in most other languages
Expression syntax is straightforward: the operators +, -, * and / work just like in most other languages
print (2 + 2) print (50 - 5*6) print ((50 - 5*6) / 4) print (8 / 5)
Comments
Post a Comment