Close
Contact Us info@learnquest.com

??WelcomeName??
??WelcomeName??
« Important Announcement » Contact Us 877-206-0106 | USA Flag
Close
Close
Close
photo

Thank you for your interest in LearnQuest.

Your request is being processed and LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

photo

Thank you for your interest in Private Training.

We look forward to helping you develop the perfect training solution to help you meet your company's goals.

For immediate assistance, speak with one of our representatives using the chat module below. Otherwise, LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

Close
photo

Thank you for your interest in LearnQuest!

Now, you will be able to stay up-to-date on our latest course offerings, promotions, and training discounts. Watch your inbox for upcoming special offers.

title

Date: xxx

Location: xxx

Time: xxx

Price: xxx

Please take a moment to fill out this form. We will get back to you as soon as possible.

All fields marked with an asterisk (*) are mandatory.

Customized Training on Python

Price
Contact LearnQuest
5 Days
Python-2016
Classroom Training
Open Source

AWS Training Pass

Take advantage of flexible training options with the AWS Training Pass and get Authorized AWS Training for a full year.

Learn More

Prices reflect a 22.5% discount for IBM employees (wherever applicable).
Prices reflect a 24% discount for Kyndryl employees (wherever applicable).
Prices reflect the Accenture employee discount.
Prices shown are the special AWS Partner Prices.
Prices reflect the Capgemini employee discount.
Prices reflect the UPS employee discount.
Prices reflect the ??democompanyname?? employee discount.
GSA Private/Onsite Price: ??gsa-private-price??
For GSA pricing, please go to GSA Advantage.
 

Class Schedule

Delivery Formats

Sort results

Filter Classes

Guaranteed to Run

Modality

Location

Language

Date

    Sorry, there are no public classes currently scheduled in your country.

    Please complete this form, and a Training Advisor will be in touch with you shortly to address your training needs.

View Global Schedule

Course Description

Overview

This training program provides a basic introduction to Pythonprogramming language. The focus of this training program willbe more on 'pythonic' approach towards problem-solving.
 

Objectives

  • Understand basic programming paradigms using Python 2 and Python 3
  • Understand built in data types, variables, functions and flow control statements.
  • Learn how to use string, tuple, list, bytearray, set, dictionary types effectively.
  • Learn 'pythonic' idioms and anti-idioms.
  • Learn functions, modules and file I/O operations.
  • Learn the basic concepts of OOP in Python.
  • Multi-threading and Multi-processing in Python.
  • Learn some of the commonly used design patterns in Python
  • Learn about process automation
  • Learn various builtin python modules for network programming and network automation

Audience

  • Engineers who wish to learn python program to developapplications or to automate their applications/framework.
  • Engineers who wish to prototype new applications.

Prerequisites

    • Participants should be confortable with the following technologies:
      • Good understanding of basic python programming that include:
      • variables and datatypes
      • flow control statements
      • comprehensions and file I/O
      • Knowledge of OOP and modular programming concepts in any programming language are recommended.

Topics

Day 1 Introduction to Python
  • Introduction to python programming
  • An overview of scripting and the pragmatic developmentapproach.
  • An overview on python interpreter
  • An overview on Python development tools
  • Python 2 vs Python 3 (feature differences)
Getting started with Python
  • Numbers and expressions
  • Variables and statements
  • Conditional statements and loop
  • Handling user input
  • An overview of built-in functions and modules
  • Python syntax, style and coding conventions
  • Basic introspection using type() and dir() function
  • Types, Classes and Dynamic typing, Duck typing
Working with Strings
  • An overview of strings in python
  • String operators
  • Built-in string manipulation functions
  • Built-in string methods
  • Special string features in python
  • Built-in modules for string handling
  • Unicode strings and bytearray
Lists, Tuples and Sets
  • Common sequence operations
  • Manipulation of Lists
  • Manipulation of Tuples
  • Manipulation of Sets
Working with dictionaries
  • Introduction to dictionaries
  • Creating, assigning, updating dictionaries
  • Dictionary operators, functions and built-in methods
Functions
  • Creating user-defined functions
  • Passing functions
  • Formal arguments
  • Variable-length arguments
  • A walk-through on various built-in functions
Getting started with Python
  • Numbers and expressions
  • Variables and statements
  • Conditional statements and loop
  • Handling user input
  • An overview of built-in functions and modules
  • Python syntax, style and coding conventions
  • Basic introspection using type() and dir() function
  • Types, Classes and Dynamic typing, Duck typing
  • Introduction to dictionaries
  • Creating, assigning, updating dictionaries
  • Dictionary operators, functions and built-in methods
Functions
  • Creating user-defined functions
  • Passing functions
  • Formal arguments
  • Variable-length arguments
  • A walk-through on various built-in functions
Getting started with Python
  • Numbers and expressions
  • Variables and statements
  • Conditional statements and loop
  • Handling user input
  • An overview of built-in functions and modules
  • Python syntax, style and coding conventions
  • Basic introspection using type() and dir() function
  • Types, Classes and Dynamic typing, Duck typing
Day 2 Modular development
  • Creating modules
  • Variable scope
  • Understanding namespaces
  • Importing modules and module attributes
  • Module hierarchy
File and Directory handling
  • File I/O operations
  • Built-in file and directory handling libraries
  • fileinput
  • stat
  • filecmp and dircmp
  • glob, zipfile and tarfile
  • pickle and shelve modules
  • Serialization using json
Standard Python modules
  • Using the sys module
  • sys.argv, sys.path, sys.version
  • An overview on __builtin__ and __future__ modules
Handson exercises
  • Practice basic programming concepts using python.
  • Small exercises on understanding conditional constructsand loops.
  • Practice various string operators, functionsand built-in methods
  • Practice exercises on Lists and Tuples
  • Practice exercises on dictionaries, functions and modules
  • Practice exercises on file operations
  • Practice exercises on logging, os related features
  • A small project like inventory management system or library management system
Day 3 Classes and Objects
  • Introduction to OOP using python
  • Classes and class attributes
  • Instances and instance attributes
  • Binding and method invocation
  • Composition, Subclassing and Derivation
  • Inheritance
  • Built-in functions for classes, instances and other objects
  • An overview of built-in python classes andmodules
Errors and exception handling
  • Introduction to exceptions
  • Detecting and handling exceptions
  • Exceptions as Strings and Classes
  • Raising exceptions
  • Creating exceptions
  • Standard exceptions
Implementing multi-tasking in Python programs
  • Introduction to threads and processes
  • Creating and managing threads and processes
  • Threading vs multiprocessing module
  • Concurrency management using Lock and RLock
  • Producer Consumer algorithm using Queue
  • Implementing thread pool and process pool
Hands on exercises
  • Create custom python library module
  • Practice exercises on multi-threading and multi-processing
  • A small project like a command line parses
Day 4 Advanced OOP features in Python
  • Python OO architectural overview
  • Python OO paradigms and metaprogramming concepts
  • An overview on Python special methods:
    • __new__(), __init__(), __del__(),
    • __str__(), __repr__(), __len__(), __nonzero__()
    • __cmp__(), __eq__(), __ne__() and family
    • Operator overloading
    • Dictionary and List emulation
    • Accessor methods - __getattr__(), __setattr__(), __delattr__()
Common design patterns with examples and exercises
  • Singleton/Borg patterns
  • Implementing thread pool and process pool
Hands on exercises
  • Create custom python library module
  • Practice exercises on multi-threading and multi-processing
  • A small project like a command line parses
Day 4 Advanced OOP features in Python
  • Python OO architectural overview
  • Python OO paradigms and metaprogramming concepts
  • An overview on Python special methods:
    • __new__(), __init__(), __del__(),
    • __str__(), __repr__(), __len__(), __nonzero__()
    • __cmp__(), __eq__(), __ne__() and family
    • Operator overloading
    • Dictionary and List emulation
    • Accessor methods - __getattr__(), __setattr__(), __delattr__()
Common design patterns with examples and exercises
  • Singleton/Borg patterns
  • Factory method
  • Factory pattern
  • Accessor pattern
  • Decorator patterns and built-in decorators
Hands on exercises
  • Practice exercises on OOP related features in python
  • Practice exercises on design patterns
Day 5 Testing, Debugging and Deployment
  • Using the unittest module for writing testcases
  • Using doctest
  • Regressing testing using test module
  • Documentation generation using pydoc
  • Using pdb debugger framework and inspect
  • Tracing python statement execution using
  • Timing measurement using timeit module
Network programming
  • An overview of the socket module
  • Creating network servers and clients using socket module
  • Factory pattern
  • Accessor pattern
  • Decorator patterns and built-in decorators
Hands on exercises
  • Practice exercises on OOP related features in python
  • Practice exercises on design patterns
Day 5 Testing, Debugging and Deployment
  • Using the unittest module for writing testcases
  • Using doctest
  • Regressing testing using test module
  • Documentation generation using pydoc
  • Using pdb debugger framework and inspect
  • Tracing python statement execution using
  • Timing measurement using timeit module
Network programming
  • An overview of the socket module
  • Creating network servers and clients using socket module
  • Creating network applications using multiprocessing
  • Creating asynchronous Socket server and clients using asyncore module
  • Using the SocketServer framework for creating scalable network servers
  • Introductory overview on Twisted Matrix framework
Hands on exercises
  • Creating a simple multi-tasking fileserver that can serve files to client, supporting multiple concurrent client connections.
  • Simple examples of chat box
  • Sending and receiving e-mails using python script
2023 Top 20 Training Industry Company - IT Training

Need Help?

Call us at 877-206-0106 or e-mail us at info@learnquest.com

Personalized Solutions

Need a personalized solution for your Training? Contact us, and one of our training advisors will help you find the best solution.

Contact Us

Need Help?

Do you have a question about the courses, instruction, or materials covered? Do you need help finding which course is best for you? We are here to help!

Talk to us

Save Up to $500 This Summer

Soak up new skills this summer with exclusive discounts on our popular topics and courses.

PROMO CODE: SUMMER2024
VALID THROUGH AUGUST 31, 2024

Summer 2024 Promotion

IBM TechXchange Conference 2024

October 21-24 | Mandalay Bay, Las Vegas

Join us for four action-packed days to immerse yourself in innovation and learning. Gain practical skills in Generative AI, harness IBM technology, and engage with tech industry experts.

Self-Paced Training Info

Learn at your own pace with anytime, anywhere training

  • Same in-demand topics as instructor-led public and private classes.
  • Standalone learning or supplemental reinforcement.
  • e-Learning content varies by course and technology.
  • View the Self-Paced version of this outline and what is included in the SPVC course.
  • Learn more about e-Learning

Course Added To Shopping Cart

bla

bla

bla

bla

bla

bla

Self-Paced Training Terms & Conditions

??spvc-wbt-warning??

Exam Terms & Conditions

??exam-warning??
??group-training-form-area??
??how-can-we-help-you-area??
??personalized-form-area??
??request-quote-area??

Sorry, there are no classes that meet your criteria.

Please contact us to schedule a class.
Close

self-paced
STOP! Before You Leave

Save 0% on this course!

Take advantage of our online-only offer & save 0% on any course !

Promo Code skip0 will be applied to your registration

Close
Nothing yet
here's the message from the cart

To view the cart, you can click "View Cart" on the right side of the heading on each page
Add to cart clicker.

Purchase Information

??elearning-coursenumber?? ??coursename??
View Cart

title

Date: xxx

Location: xxx

Time: xxx

Price: xxx

Please take a moment to fill out this form. We will get back to you as soon as possible.

All fields marked with an asterisk (*) are mandatory.

If you would like to request a quote for 5 or more students, please contact CustomerService@learnquest.com to be assigned an account representative.

Need more Information?

Speak with our training specialists to continue your learning journey.

 

Delivery Formats

Close

By submitting this form, I agree to LearnQuest's Terms and Conditions

heres the new schedule
This website uses third-party profiling cookies to provide services in line with the preferences you reveal while browsing the Website. By continuing to browse this Website, you consent to the use of these cookies. If you wish to object such processing, please read the instructions described in our Privacy Policy.
Your use of this LearnQuest site affirms your consent to our use of session and persistent cookies to track how you use our website.