Python Lesson 0:
Introduction to Python
Download the PDF introducing Python programing language by learning:
Python syntax, making comments using #, executing command lines, the print() function and its parameters with examples, a brief overview of data types with examples of commonly used ones, a brief intro to creating a variable, and data type casting
Python Lesson 1-8:
Creating 8 Different Types of Variables in Python
Download the PDF with simple step-by-step instructions and examples on:
Integers, Float, String, Lists, Dictionaries, Tuples, Sets, and Boolean variables
Python Lesson 9-15: Arithmetic Operators
Download the PDF demonstrating basic arithmetic operators using variables in Python such as:
Addition, Subtraction, Multiplication, Division (float division), Division (floor division), Modulus operator, and Exponents
Python Lesson 16-24: Basic Condition Statements
Download the PDF filled with easy-to-understand examples of conditional statements such as:
Defining logic symbols, if statements, if else statements, for loops, while loops, nested loops, break statement, continue statement, and pass statement
Python Lesson 25-36: Functions
Download the PDF to learn about functions in Python with help on:
Creating a function, calling the function, parameters and arguments (with integer and string examples), N parameters for N arguments, passing unknown argument examples using *, passing arguments using key=value syntax, passing unknown keyword arguments using **, establishing default parameter value in function, passing lists as arguments, return values and statements in functions, pass statements in functions, and recursion functions
Python Lesson 37-38: Introduction to Statistics
Download the PDF for an introductory lesson on rudimentary statistical concepts using Python's built-in statistics module:
The statistical functions overviewed are mean, fmean, geometric mean, harmonic mean, median, median low, median high, median grouped, mode, multimode, quantiles, population standard deviation, population variance, sample standard deviation, and sample variance. Includes formulas for certain functions.
Python Lesson 39: Introduction to Pandas
Download the PDF for an introductory lesson on Pandas Library to learn how to:
Create Series from a list, dictionary or scalar value; create a DataFrame from series, lists, and dictionaries; how to change the labels on an index; how to utilize functions such as loc/ iloc, describe, len, index, columns, head, tail, and extracting specific indices.