Course Content
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
First Step in Programming
It is time for us to dive deeper into programming, but let's start from the very beginning.
The first step is learning how to output messages! You need to use the print()
statement to do it. Into the print()
statement, you need to put the string in the output, in ''
or " "
quotes.
For instance, if we want to output the sentence The US Independence Day is on the 4th of July
:
print('The US Independence Day is on the 4th of July') # or print("The US Independence Day is on the 4th of July")
Everything was clear?
Thanks for your feedback!
Section 1. Chapter 1