Contenido del Curso
Introduction to Data Analysis in Python
Introduction to Data Analysis in Python
Math Skills
Operator | Usage | Syntax |
+ | Adding | 5 + 7 |
- | Subtracting | 10 - 4 |
* | Multiplying | 5 * 6 |
/ | Dividing | 20 / 5 |
More operators
You've managed a lot of tasks already, but let's add something new related to math operations.
Operator | Usage | Syntax | Result |
// | Integer Division | 15//2 | 7 |
% | Remainder | 15 % 2 | 1 |
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 1. Capítulo 5