Course outline for Python
TechnologyBasic PythonDuration2 days
Lab Setup
Make sure you have Python 3 installed. All content is covered with Python 3
How we train
Online training for Python
- Instructor-led live cohorts
- Self-paced learning with expert coaches
- 24x7 cloud labs with end-to-end examples
All sessions are 100% hands-on. Labs and activities are derived from real-world work our engineers deliver.
Classroom training
Available for corporate teams in:
- Bengaluru
- Chennai
- Hyderabad
- Mumbai
- Delhi/Gurgaon/NCR
- Pune
Note: Classroom training is for corporate clients only.
Self-paced hands-on sessions are delivered via VirtualCoach.
Detailed Course Outline
Hands-onWhy Python
- The Universal Language
Getting Started
- Installing Python
- Python - "Hello World"
- Using the Interpreter
- iPython - a better Python interpreter
Language Basics
- Types
- Dynamic v/s Static Typing
- Strong v/s Weak Typing
- Numbers
- Strings
- Unicode
- Complex types
- Operators
- Operator Overloading
- Variables
- Scoping and Expressions
- Use of tabs and whitespaces as indent
- Conditionals
- for...else
Functions
- The general syntax
- Default values for arguments
- Returning and receiving multiple values
- Variable number of arguments - args, kwargs
- Scope revisited
Collection
- Primitive v/s Composite Types
- Lists
- Tuples
- Maps (or Dictionaries)
- Sets
- Enums
- Looping Techniques
Modularisation of code
- Global and Local namespace
- Introduction to modules
- Using modules
- Creating your own modules
- Working with a third-party library
Regular Expressions
- Matching v/s Searching
- Regular Expression Objects
- Match Objects
- Examples
Files and Directories
- Reading Files
- Writing Files
- Handling I/O Errors
- Higher level file operations
- File and Directory comparisons
Exception Handling
- Exception handling basics
- try...except
- Examples