7 ответов
+ 9
+ : Addition
- : Subtraction
* : Multiplication
/: Division
% : Modulus
** : Power
+ 8
Basic numeric-operations
* = Multiplication
/ = Division
+ = Addition
- = Subtraction
% = Reminder of division
More on Google, search CheatSheet! There are many operation out there!
Contact me! If something wrong or further question...
+ 3
very good. thank you
+ 1
Duplicate it pls add floor division (//) in your post
+ 1
+ : Addition
- : Subtraction
* : Multiplication
/ : Division
** : Power
// : Floor Division
% : Remainder
+ 1
1):+ addition
2):- subtraction
3):* multiplication
4):/,// division with (/) will give you a float value by default for example
print(4/2)
output
2.0
but if you use (//) will give you an integer value for example
print(4//2)
output
2
try it bro on code playground.
5): ** power
6): % remainder