Conteúdo do 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
How to Append New Element?
Let's move to methods that we can apply to our list. The first one is append()
, which adds the item to the end of the list. Look at the example:
word = ['c', 'a', 't'] word.append('s') print(word)
Everything is easy! It is your turn to practice.
If you want to dive deeper into data types, you can take a Python Data Types course.
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 1. Capítulo 13