Build large and salable application using Python in 6 hours
Workshop Code: hsts-w31
What Is Included in this Live Workshop
You will learn:
- Working with Python's built-in objects
- Reading and writing files
- Creating variables and objects in Python
- Communicating with databases
- Creating structured data with lists, tuples, sets and dictionaries
- Performing conversion operations on numbers
- Using conditional constructs to control flow of execution
- Writing clear and concise regular expressions
- Organizing code with functions and classes
- Creating object-oriented Python programs
- Using exceptions to gracefully handle errors
Workshop Description
This hands on Python programming workshop shows how to rapidly develop and maintain effective Python programs. The workshop includes thorough coverage of Python syntax, built in data types and control constructs. The workshop takes a practical approach to creating and organizing Python programs using functions, packages, modules and classes as part of Python's object-oriented paradigm. Attendees will use regular expressions to rapidly process data captured from users and from the file system.
Attendees will learn how to use Python to create scripts that manipulate data, automate tasks, perform error handling and store and retrieve data by using relational databases. Students will be able to create Python scripts that assist with system administration.
Comprehensive hands on exercises are integrated throughout to reinforce learning and develop real competency.
Workshop Prerequisites
Prior scripting experience or knowledge of fundamental programming concepts.
Related Training and Certification Courses
Responsive Website Design Using Advanced HTML5 and CSS3
HTML5 & HTML Intro with CSS
Intro to Dreamweaver with Website Development Training
SQL Programming and DB Management
Object Oriented Programming with UML
Self-paced training
This course is available in a self-paced video format starting at $60. Click here to learn more and register. For complete self-paced software engineering training, visit our Complete Training Bundle for Software Engineers page.
Overall Info About our Workshops
Highlights
-
6 hour hands-on training led by experienced instructors
-
Digital workshop contents
Enrollment Fee
Online live starts from $390
Workshop Session Dates
Our workshops are offered all year around. Upon registration we enroll you to the earliest available class but you can reschedule it free of charge.
Location
-
Online or in our DC office at 3165 Mt Pleasant St NW
Time
-
Saturdays 9AM-4:30PM (1 hour Lunch)
-
Weekdays 6:30PM-9:30 PM
Workshop Outline
Topics Covered in this Course.
1- Introduction to Python 3
- Origin and Goals of Python
- Overview of Python Features
- Getting and Installing Python
- Accessing Python Documentation: Python Enhancement Proposals (PEP)
- Python's Strengths
- Using Python with Other Programming Languages
2- Using Python
- Executing Python Programs from the Command Line
- Python Command Line Options
- Environment Variables that Influence Python
- Creating Python GUI Applications
- Standalone vs. Web-Enabled Interfaces
- The Python Standard Library
3- Language Fundamentals
- Python's Lexical Analyzer
- Using Whitespace to Structure Programs
- Identifiers and Keywords
- Python's Execution Model
- Naming Objects and Binding
- Python's Data Model
- Immutable and Mutable Objects
- Values
- Types
- Creating and Using Variables
4- Flow Control Constructs
- if/elif/else Statements
- Creating Loops with while and for
- Understanding Iterators
- Returning Values with return Statements
- Loop Modification with break and continue
- Returning Generator Iterators with the yield Statement
- Retrieving Iterators with next()
5- Expressions
- Unary and Binary Arithmetic Operations
- Comparison and Boolean Operations
- Conditional Expressions
- Lambda Expressions
- Order of Operations and Operator Evaluation
- Expression Lists
- Assignment Operations
6- Organizing Code
- Defining Functions
- Calling Functions
- Creating Anonymous Functions
- Altering Function Functionality with Decorator Functions
- Creating Classes with the class Statement
- Creating Objects as Class Instances
- Using Preexisting Classes as the Basis of a New Class
- Using Modules to Group Related Functions, Classes and Variables
- Locating and Importing Modules
- Using Packages to Group Modules Together
7- Arrays, Collections and Dictionaries
- Sequenced Data Structures
- Arrays
- Collections
- Dictionaries
- Creating and Accessing Lists
- Manipulating Lists
- Creating and Accessing Tuples
- Understanding the Differences Between Lists and Tuples
- Using Dictionaries to Create Data Records
- Manipulating Dictionaries Using Dictionary Methods
- Creating Sets
- Performing Set Operations
- Union
- Intersect
- Difference
- Differences Between Sets and Dictionaries
- Using Generators to Return Iterators
8- Working with Arguments
- Passing Arguments to Functions by Reference and by Value
- Defining Functions with Required Arguments
- Defining Functions with Default Arguments
- Defining Flexible Functions that Take Variable Length Arguments