Member-only story
YouTube Video Review: Data Analysis with Python — Zero to Pandas
I have been studying data analysis in an attempt to upgrade my skill in this area of data science. I therefore embarked upon a 10 hour training course focused specifically on data analysis.
The course I have taken, Data Analysis with Python: Zero to Pandas, is broken down into lectures, which I will endeavour to summarise in this post:-
Lecture 1
Python can be used as a calculator because it can add, subtract, divide, and carry out exponential notation.
The operators for mathematics are:-
- == equal to
- != not equal to
- > greater than
- < less than
- >= greater than or equal to
- <= less than or equal to
Conditional operators are:-
- And
- Or
- Not
Types are:-
- Integer
- Float
- Boolean
- None
- String
- List
- Tuple
- Dictionary