Contenido del Curso
Introduction to Python for Data Analysis
Introduction to Python for Data Analysis
2. Introduction to Python 2/2
3. Explore Dataset
Data StudyOperations with the FileHow to Explore the DataSorting DataMax, min, mean, medianChallengeGroup DataDive Deeper into Grouping DataGroup Data 2.0Introduction to NumPyPivot TablesRecall Loops.loc FunctionDeal with Several ConditionsChallengeVisualization: First StepsDive Deeper into Visualization
Deal with Percents
You've managed a lot of tasks already, but let's add something new related to math operations.
Math symbol | Usage | Example in Python | Result |
---|---|---|---|
* | Multiplying numbers | 5 * 6 | 30 |
// | Integer Division. It is used when we want to know how many right numbers the left number contains. | 15//2 | 7 |
% | Remainder. It is used when we want to calculate the remainder of a division. | 15 % 2 | 1 |
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 1. Capítulo 5