Skip Navigation

Live Online help Real-time discussions with your instructor and fellow students via technology

Introduction to Python Programming

Instructor

Cheryl Roth

See Course Dates

What You Will Learn

Python is a dynamic, strongly typed, object-oriented, multipurpose scripting language for the web. In this hands-on course students first learn the basics of writing and running Python scripts and then move into more advanced topics like file operations, regular expressions, working with binary data, and how to use Python modules. Topics include basic Python language components, the IDLE environment, control flow constructs, strings, I/O, collections, classes, modules, and regular expressions. Prior programming or scripting experience recommended. Understand Simple Variable Declarations, Conditionals and Loops.


This course is a component of the Python Programming Certificate and the Data Anaylst I Professional Certificate.


This section is facilitated by an instructor online. Within 2 business days of the class start date, you will receive instructions about how to access the class online.

Certification

Python Programming Certificate

Python is a popular introductory programming language. Learn how to use code in an efficient, flexible and effective way.


Courses will cover topics such as code readability, syntax, expressions, GUIs, CGI programming and more. Complete all courses within one year and receive the Python Programming Certificate.

Prerequisites: Some programming experience suggested.

See individual courses for prerequisites, detailed descriptions, outlines and online registration.

Required Courses

We suggest attending these courses in this order:

  • Introduction to Python Programming
  • Advanced Python Programming
  • Python Programming for Data Analysis

 

Introduction to Python Programming
Course Dates

Live Online help Real-time discussions with your instructor and fellow students via technology

$1,495.00

Introduction to Python Programming

8/26/2025 - 8/28/2025 Tu W Th 8:00AM-4:00PM
19 Seats Open
9/16/2025 - 10/2/2025 Tu Th 5:30PM-9:00PM
20 Seats Open

Selected Course

Dates: 9/16/2025 - 10/2/2025 Tu Th

Course type: Data Management

Times: 5:30PM-9:00PM

Location: Live Online Campus Map

Contact Hours: 21.0

Other Details

Course Code: BIGDATA-100-37

Category: Data Management

Contact Hours: 21.0

Format: Classroom

Schedule Details:

After registering for this course, you can come back to the catalog to register for more courses.

Issues with registering? Please contact us at CERegistration@jccc.edu or call 913-469-2323.

Similar Courses

Data Management image Introduction to Python Programming
Live Online help Real-time discussions with your instructor and fellow students via technology
Introduction to Python Programming Session start date: Aug 26
18.0 contact hours $1,995.00
Data Management image Python Programming for Data Analysis
Live Online help Real-time discussions with your instructor and fellow students via technology
Python Programming for Data Analysis Session start date: Aug 25
14.0 contact hours $1,295.00
Data Management image Advanced Python Programming
Live Online help Real-time discussions with your instructor and fellow students via technology
Advanced Python Programming Session start date: Oct 14
21.0 contact hours $1,995.00
Web image Introduction to C# Programming
Online help Learning at your own pace, or facilitated by an instructor
Introduction to C# Programming Session start date: Sep 17
24.0 contact hours $189.00
Web image Introduction to Java Programming
Online help Learning at your own pace, or facilitated by an instructor
Introduction to Java Programming Session start date: Sep 17
contact hours $189.00
Web image Intermediate Java Programming
Online help Learning at your own pace, or facilitated by an instructor
Intermediate Java Programming Session start date: Sep 17
24.0 contact hours $189.00
Project Management image Agile Certified Practitioner (PMI-ACP)® Bootcamp
Live Online help Real-time discussions with your instructor and fellow students via technology
Agile Certified Practitioner (PMI-ACP)® Bootcamp Session start date: Nov 17
28.0 contact hours $1,995.00
Web image Javascript in the Browser Context
Live Online help Real-time discussions with your instructor and fellow students via technology
Javascript in the Browser Context Session start date: Aug 26
36.0 contact hours $1,599.00
Web image Kubernetes for Developers
Live Online help Real-time discussions with your instructor and fellow students via technology
Kubernetes for Developers Session start date: Nov 24
18.0 contact hours $2,795.00
Web image Programming in C# and .NET
Live Online help Real-time discussions with your instructor and fellow students via technology
Programming in C# and .NET Session start date: Nov 3
30.0 contact hours $2,995.00
Aviation image Drone Photography
In Person help Traditional, instructor-led and offered in a classroom at JCCC
Drone Photography Session start date: Sep 6
3.0 contact hours $49.00
Academic Review image Introduction to Algebra
Online help Learning at your own pace, or facilitated by an instructor
Introduction to Algebra Session start date: Sep 17
24.0 contact hours $169.00
Aviation image Introduction to UAV Drones
In Person help Traditional, instructor-led and offered in a classroom at JCCC
Introduction to UAV Drones Session start date: Sep 6
4.0 contact hours $89.00
Welding image Intro to Welding Short Course
In Person help Traditional, instructor-led and offered in a classroom at JCCC
Intro to Welding Short Course Session start date: Sep 25
16.0 contact hours $499.00
QuickBooks image Introduction to QuickBooks Online
Online help Learning at your own pace, or facilitated by an instructor
Introduction to QuickBooks Online Session start date: Sep 17
24.0 contact hours $159.00
Business and Leadership image Introduction to Nonprofit Management
Online help Learning at your own pace, or facilitated by an instructor
Introduction to Nonprofit Management Session start date: Sep 17
24.0 contact hours $169.00
Data Management image Advanced Data Visualization with Tableau
In Person help Traditional, instructor-led and offered in a classroom at JCCC
Advanced Data Visualization with Tableau Session start date: Nov 17
14.0 contact hours $699.00
Literature and Writing image Introduction to Journaling
Online help Learning at your own pace, or facilitated by an instructor
Introduction to Journaling Session start date: Sep 17
24.0 contact hours $149.00
Web image Introduction to JavaScript
Online help Learning at your own pace, or facilitated by an instructor
Introduction to JavaScript Session start date: Sep 17
24.0 contact hours $189.00
 
Close Modal Window

Online Registration Temporarily Down

Please contact us at ceregistration@jccc.edu or call 913-469-2323 to register now or please visit us later.

Close
Close Modal Window

Course Outline

  • Python Overview
    • Python Versions
    • Advantages of Python
    • Disadvantages of Python
    • Installing Python
    • Environment Variables
    • Executing Python from the Command Line
    • How to use IDLE
    • Python Documentation
    • Getting Help
    • Dynamic Types
    • Python Reserved Words
    • Naming Conventions
  • Basic Python Syntax
    • Basic Syntax
    • Comments
    • Data Types and Variables
    • String Data
    • String Methods
    • The format Method
    • String Operators
    • Numeric Data Types
    • Conversion Functions
    • Simple Input and Output
    • The % Method
    • The print Function
  • Language Components
    • Indenting Requirements
    • The if Statement
    • Relational and Logical Operators
    • Bit Wise Operators
    • while statements
    • for statements
    • break and continue statements
  • Collections
    • Lists
    • Tuples
    • Sets
    • Dictionaries
    • Sorting Dictionaries
    • Copying Collections
  • Functions
    • Defining Your Own Functions
    • Parameters
    • Function Documentation
    • Keyword and Optional Parameters
    • Passing Collections to a Function
    • Variable Number of Arguments
    • Scope
    • Passing Functions to a Function
    • Map
    • Filter
    • Mapping Functions in a Dictionary
    • Lambda
    • Inner Functions
    • Closures
  • Modules
    • Modules
    • Standard Modules - sys
    • Standard Modules - math
    • Standard Modules - time
    • The dir Function
  • Exceptions
    • Errors
    • Run Time Errors
    • The Exception Model
    • Exception Hierarchy
    • Handling Multiple Exceptions
    • Raise
    • Assert
  • Input and Output
    • Data Streams
    • Creating Your Own Data Streams
    • Access Modes
    • Writing Data to a File
    • Reading Data From a File
    • Additional File Methods
    • Using Pipes as Data Streams
    • Handling IO Exceptions
    • Working with Directories
    • Metadata
    • The pickle Module
  • An Introduction to Classes in Python
    • Classes in Python
    • Principles of Object Orientation
    • Creating Classes
    • Instance Methods
    • Properties
    • Class Methods and Data
    • Static Methods
    • Private Methods
    • Inheritance
  • Regular Expressions
    • Simple Character Matches
    • Special Characters
    • Character Classes
    • Quantifiers
    • The Dot Character
    • Greedy Matches
    • Grouping
    • Matching at Beginning or End
    • Match Objects
    • Substituting
    • Splitting a String
    • Compiling Regular Expressions
    • Flags
Close Modal Window

Live Online help Real-time discussions with your instructor and fellow students via technology

Introduction to Python Programming

DATE TIME DAY PRICE AVAILABILITY LOCATION  
8/26/2025 - 8/28/2025 8:00AM-4:00PM Tu W Th $1,495.00 19 Seats Open Live Online Campus Map Register
9/16/2025 - 10/2/2025 5:30PM-9:00PM Tu Th $1,495.00 20 Seats Open Live Online Campus Map Register
Close Modal Window

Live Online help Real-time discussions with your instructor and fellow students via technology

$1,495.00

Introduction to Python Programming

8/26/2025 - 8/28/2025 Tu W Th 8:00AM-4:00PM
19 Seats Open
9/16/2025 - 10/2/2025 Tu Th 5:30PM-9:00PM
20 Seats Open

Selected Course

Dates: 9/16/2025 - 10/2/2025 Tu Th

Course type: Data Management

Times: 5:30PM-9:00PM

Location: Live Online Campus Map

Contact Hours: 21.0

Other Details

Course Code: BIGDATA-100-37

Category: Data Management

Contact Hours: 21.0

Format: Classroom

Schedule Details:

After registering for this course, you can come back to the catalog to register for more courses.

Issues with registering? Please contact us at CERegistration@jccc.edu or call 913-469-2323.