Last active
April 13, 2019 02:31
-
-
Save JulianaGuama/f5dc512597e6192035191344e7bd5e57 to your computer and use it in GitHub Desktop.
Operadores aritméticos em Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
operação | operador | exemplo | |
---|---|---|---|
adição | + | 'a+b=30' | |
subtração | - | 'a-b=-10' | |
multiplicação | * | 'a*b=200' | |
divisão | / | 'a/b=2' | |
módulo | % | 'a%b=0' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment