What you'll learn

Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.
- Install Python
- Master Python fundamentals
- Data Structures
- Conditional Statements
- Modules
- Regular Expressions
- Object Oriented Programming
- Master Python best practices
CURRICULUM
Intro to Python
- History of Python
- Why to use Python?
- Starting Python
- Interpreter PATH
- Using the Interpreter
- Python Scripts on UNIX/Windows
Python Installation
- Python Editors and IDEs
- Install Anaconda
String Operations
- String Operations
- Data Types & Variables
- Commonly used Operators
Data Structures in Python
- Arrays
- Lists
- Tuples
- Dictionaries
- Sets
Control & Loop Statements in Python
- For Loop
- While Loop
- Break Statement
- Next Statements
- Repeat Statement
- if, if…else Statements
- Switch Statement
Functions & Classes in Python
- Writing your own functions (UDF)
- Calling Python Functions
- Functions with Arguments
- Calling Python Functions by passing Arguments
- Lambda Functions
Using Modules
- The Import Statement
- Module Search Path
- Package Installation Ways
Regular Expressions
- RE Objects
- Pattern matching
- Parsing data
- Subexpressions
- Complex substitutions
- RE tips and tricks
Object Oriented Programming
- Introduction to Python Classes
- Defining Classes
- Initializers
- Instance Methods
- Properties
- Class Methods and Data
- Static Methods
- Private Methods and Inheritance
- Module Aliases
Case Study
- Use Case