The Absolute Python Programming Certification Bundle

391 Enrolled
3 Courses & 5 Hours
$29.99$600.00
You save 95% -

What's Included

Introduction to Python Training
  • Certification included
  • Experience level required: Intermediate
  • Access 139 lectures & 3 hours of content 24/7
  • Length of time users can access this course: Lifetime

Course Curriculum

139 Lessons (3h)

  • Your First Program
  • Setup
    Setup for Your Class
  • Lesson 1 - Python Basics
    Activity 1 - Anaconda and Spyder - Reading
    Activity 2 - Getting Started with Python - Presentation4:39
    Activity 3 - Running Python - Reading
    Activity 4 - Make IDLE the Default Python Editor - Reading
    Activity 5 - Hello, World! - Reading
    Activity 6 - Hello World - Exercise
    Activity 7 - Literals and Comments - Reading
    Activity 8 - Data Types
    Activity 9 - Exploring Types - Exercise
    Activity 10 - Types Review - Presentation3:20
    Activity 11 - Variables - Reading
    Activity 12 - A Simple Python Script - Exercise
    Activity 13 - A Simple Python Script Review - Presentation6:08
    Activity 14 - Functions - Presentation7:41
    Activity 15 - Writing a Python Module - Reading
    Activity 16 - The print() Function - Reading
    Activity 17 - Collecting User Input - Reading
    Activity 18 - Hello, You! - Exercise
    Activity 19 - Hello, You! Review - Presentation5:08
    Activity 20 - Getting Help - Reading
    Activity 21 - Python Basics - Quiz
  • Lesson 2 - Functions and Modules
    Activity 1 - Getting Started with Functions - Presentation12:15
    Activity 2 - Defining Functions and Variable Scope - Reading
    Activity 3 - Global Variables - Reading
    Activity 4 - Function Parameters - Reading
    Activity 5 - A Function with Parameters - Exercise
    Activity 6 - Parameters with Default Values - Exercise
    Activity 7 - Review of Exercises - Presentation5:03
    Activity 8 - Returning Values - Reading
    Activity 9 - Importing Modules - Reading
    Activity 10 - Functions and Modules - Quiz
  • Lesson 3 - Math
    Activity 1 - Getting Started with Python Math - Presentation5:21
    Activity 2 - Arithmetic Operators - Reading
    Activity 3 - Floor and Modulus - Exercise
    Activity 4 - Floor and Modulus Review - Presentation2:58
    Activity 5 - Assignment Operators - Reading
    Activity 6 - Built-in Math Functions - Reading
    Activity 7 - The math Module - Reading
    Activity 8 - The random Module - Reading
    Activity 9 - How Many Pizzas Do We Need_ - Exercise
    Activity 10 - Pizza Review - Presentation9:42
    Activity 11 - Math - Quiz
  • Lesson 4 - Python Strings
    Activity 1 - Getting Started with Python Strings - Presentation5:33
    Activity 2 - Quotation Marks and Special Characters - Reading
    Activity 3 - String Indexing - Reading
    Activity 4 - Indexing Strings - Exercise
    Activity 5 - Indexing Strings Review - Presentation5:22
    Activity 6 - Slicing Strings - Reading
    Activity 7 - Slicing Strings - Exercise
    Activity 8 - Slicing Strings Review - Presentation3:03
    Activity 9 - Concatenation and Repetition - Reading
    Activity 10 - Repetition - Exercise
    Activity 11 - Repetition Review - Presentation3:36
    Activity 12 - Common String Methods - Reading
    Activity 13 - String Formatting - Reading
    Activity 14 - Playing with Formatting - Exercise
    Activity 15 - Built-in String Functions - Reading
    Activity 16 - Outputting Tab-delimited Text - Exercise
    Activity 17 - Tab-delimited Text Review - Presentation10:41
    Activity 18 - Python Strings - Quiz
  • Lesson 5 - Iterables_ Sequences, Dictionaries, and Sets
    Activity 1 - Getting Started with Iterables - Presentation6:36
    Activity 2 - Definitions - Reading
    Activity 3 - Sequences_ Lists - Reading
    Activity 4 - Remove and Return Random Element - Exercise
    Activity 5 - Remove Random Element Review - Presentation3:09
    Activity 6 - Sequences_ Tuples - Reading
    Activity 7 - Sequences_ Ranges - Reading
    Activity 8 - Sequences_ Indexing - Reading
    Activity 9 - Simple Rock, Paper, Scissors Game - Exercise
    Activity 10 - Rock-paper-scissors Review - Presentation2:33
    Activity 11 - Sequences_ Slicing - Reading
    Activity 12 - Slicing Sequences - Exercise
    Activity 13 - Slicing Sequence Review - Presentation5:05
    Activity 14 - min(), max(), and sum() - Reading
    Activity 15 - Sequences to Strings and Back Again - Reading
    Activity 16 - Joining and Splitting Strings and Converting Sequence Types - Presentation2:56
    Activity 17 - Unpacking Sequences - Reading
    Activity 18 - Dictionaries - Reading
    Activity 19 - The len() Function - Reading
    Activity 20 - Creating a Dictionary from User Input - Exercise
    Activity 21 - Creating a Dictionary Review - Presentation6:29
    Activity 22 - Sets - Reading
    Activity 23 - args and _ kwargs - Reading
    Activity 24 - Iterables - Quiz
  • Lesson 6 - Flow Control
    Activity 1 - Getting Started with Flow Control - Presentation1:06
    Activity 2 - Conditional Statements - Reading
    Activity 3 - Loops in Python - Reading
    Activity 4 - All True and Any True - Exercise
    Activity 5 - All True and Any True Review - Presentation4:13
    Activity 6 - Loops_ break and continue - Reading
    Activity 7 - Word Guessing Game - Exercise
    Activity 8 - Word Guessing Game Review - Presentation8:58
    Activity 9 - Loops_ The else Clause - Reading
    Activity 10 - Find the Needle - Exercise
    Activity 11 - Find the Needle Review - Presentation7:36
    Activity 12 - The enumerate() Function - Reading
    Activity 13 - Generators - Reading
    Activity 14 - Rolling Dice - Exercise
    Activity 15 - Rolling Dice Review - Presentation7:05
    Activity 16 - List Comprehensions - Reading
    Activity 17 - List Comprehension Review - Presentation2:52
    Activity 18 - Flow Control - Quiz
  • Lesson 7 - File Processing
    Activity 1 - Opening Files - Reading
    Activity 2 - Finding Text in a File - Exercise
    Activity 3 - Finding Text Review - Presentation7:44
    Activity 4 - Writing to Files - Reading
    Activity 5 - Writing to Files - Exercise
    Activity 6 - Writing to Files Review - Presentation2:24
    Activity 7 - List Creator - Exercise
    Activity 8 - List Creator Review - Presentation11:29
    Activity 9 - The os and os.path Modules - Reading
    Activity 10 - os and os.path - Presentation4:33
    Activity 11 - File Processing - Quiz
  • Lesson 8 - Exception Handling
    Activity 1 - Getting Started with Exception Handling - Presentation2:43
    Activity 2 - Exception Handling Basics - Reading
    Activity 3 - Wildcard except Clauses - Reading
    Activity 4 - Getting Information on Exceptions - Reading
    Activity 5 - Raising Exceptions - Exercise
    Activity 6 - The else Clause - Reading
    Activity 7 - The finally Clause - Reading
    Activity 8 - Using Exceptions for Flow Control - Reading
    Activity 9 - Running Sum - Exercise
    Activity 10 - Running Sum Review - Presentation3:52
    Activity 11 - Raising Your Own Exceptions - Reading
    Activity 12 - Exception Handling - Quiz
  • Lesson 9 - Python Dates and Times
    Activity 1 - Understanding Time - Reading
    Activity 2 - The time Module - Reading
    Activity 3 - The time Module - Presentation4:52
    Activity 4 - The datetime Module - Reading
    Activity 5 - datetime.date - Presentation3:15
    Activity 6 - datetime.time - Presentation1:48
    Activity 7 - datetime.datetime - Presentation2:04
    Activity 8 - datetime.timedelta - Presentation2:15
    Activity 9 - Report on Amtrak Departure Times - Exercise
    Activity 10 - Dates and Times - Quiz
  • Lesson 10 - Running Python Scripts from the Command Line
    Activity 1 - sys.argv - Reading
    Activity 2 - sys.argv - Presentation3:38
    Activity 3 - sys.argv - Quiz

Introduction to Python Training

WI
Webucator, Inc

Webucator is a global training company founded in 2003 that has trained over 60,000 students. It provides onsite and online training on technologies such as Microsoft ASP.NET, Microsoft Office, Azure, Windows, Java, Adobe, Python, SQL, JavaScript, Angular and much more. Webucator has trained more than 63,677 students from over 11,907 organizations and is a Microsoft Certified Partner for Learning Solutions (CPLS).

Description

Python is a popular, general-purpose programming language primarily used in web and app development, but it's also making huge strides in the realms of AI and machine learning. It's also versatile and user-friendly, making it a perfect pick for newcomers to learn. In this Python training course, students learn to program in Python. The course is aimed at students new to the language who may or may not have experience with other programming languages.

  • Access 139 lectures & 3 hours of content 24/7
  • Understand how Python works & its various applications
  • Work with & manipulate strings in Python
  • Perform math operations & work w/ Python sequences
  • Learn flow control processing

Specs

Important Details

  • Length of time users can access this course: lifetime
  • Access options: web & mobile streaming
  • Certification of completion included
  • Redemption deadline: redeem your code within 30 days of purchase
  • Updates included
  • Experience level required: intermediate

Requirements

  • Any device with basic specifications

Terms

  • Unredeemed licenses can be returned for store credit within 30 days of purchase. Once your license is redeemed, all sales are final.
Your cart is empty. Continue Shopping!
Processing order...