Course outline for Python

Lab Setup

Make sure you have Python 3 installed. All content is covered with Python 3

Duration

2 days

Training Mode

Online training for Python

We provide:

  • Instructor led live training
  • Self-paced learning with access to expert coaches
  • 24x7 access to cloud labs with end to end working examples

All jnaapti sessions are 100% hands-on. All our instructors are engineers by heart. Activities are derived from real-life problems faced by our expert faculty. Self-paced hands-on sessions are delivered via Virtual Coach.

Classroom training for Python

Classroom sessions are conducted in client locations in:

  • Bengaluru
  • Chennai
  • Hyderabad
  • Mumbai
  • Delhi/Gurgaon/NCR

Note: Classroom training is for corporate clients only

Detailed Course Outline for Python

Why 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