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.

Introduction to Python 3.8

Price
2,340 USD
4 Days
PLPJ-190
Classroom Training, Online 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

In this Python training course, students will 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. The course was written using Python 3.8 but is relevant for all students using Python 3.

 

Objectives

Upon completion of the Introduction to Python 3.8 course, students will learn:
  • How Python works
  • Python's place in the world of programming languages
  • Python literals
  • Python comments
  • Variables and Python data types
  • Simple modules
  • Outputting data with print()
  • Collecting user input
  • Defining and calling functions
  • Parameters and arguments
  • Variable scope
  • Creating and importing modules
  • Math in Python
  • The math and random modules
  • String basics
  • Special characters
  • Multi-line strings
  • Indexing and slicing strings
  • Common string operators and methods
  • Formatting strings
  • Built-in string functions
  • Lists, tuples, ranges, dictionaries, and sets
  • The *args and **kwargs parameters
  • Virtual environments
  • Installing packages with pip
  • Conditions and loops
  • Generator functions
  • List comprehensions
  • Exception handling
  • The time and datetime modules
  • Working with files and directories
  • Working with the os and os.path modules
  • PEP8 and Pylint

Audience

Students wanting to learn to program using Python.
 

Prerequisites

    Some programming experience would be useful for this Python class.
     

Topics

1. LESSON 1. Python Basics
  • Getting Familiar with the Terminal
  • Running Python
  • Running a Python File
    • Exercise 1: Hello, world!
  • Literals
  • Python Comments
  • Data Types
    • Exercise 2: Exploring Types
  • Variables
    • Exercise 3: A Simple Python Script
  • Constants
  • Deleting Variables
  • Writing a Python Module
  • print() Function
  • Collecting User Input
    • Exercise 4: Hello, You!
  • Reading from and Writing to Files
    • Exercise 5: Working with Files
2. LESSON 2. Functions and Modules
  • Defining Functions
  • Variable Scope
  • Global Variables
  • Function Parameters
    • Exercise 6: A Function with Parameters
  • Default Values
    • Exercise 7: Parameters with Default Values
  • Returning Values
  • Importing Modules
  • Methods vs. Functions
3. LESSON 3. Math
  • Arithmetic Operators
    • Exercise 8: Floor and Modulus
  • Assignment Operators
  • Precedence of Operations
  • Built-in Math Functions
  • The math Module
  • The random Module
    • Exercise 9: How Many Pizzas Do We Need?
    • Exercise 10: Dice Rolling
4. LESSON 4. Python Strings
  • Quotation Marks and Special Characters
  • String Indexing
    • Exercise 11: Indexing Strings
  • Slicing Strings
    • Exercise 12: Slicing Strings
  • Concatenation and Repetition
    • Exercise 13: Repetition
  • Combining Concatenation and Repetition
  • Python Strings are Immutable
  • Common String Methods
  • String Formatting
    • Exercise 14: Playing with Formatting
  • Formatted String Literals (f-strings)
  • Built-in String Functions
    • Exercise 15: Outputting Tab-delimited Text
5. LESSON 5. Iterables: Sequences, Dictionaries, and Sets
  • Definitions
  • Sequences
  • Lists
  • Sequences and Random
    • Exercise 16: Remove and Return Random Element
  • Tuples
  • Ranges
  • Converting Sequences to Lists
  • Indexing
    • Exercise 17: Simple Rock, Paper, Scissors Game
  • Slicing
    • Exercise 18: Slicing Sequences
  • min(), max(), and sum()
  • Converting Sequences to Strings with str.join(seq)
  • Splitting Strings into Lists
  • Unpacking Sequences
  • Dictionaries
  • The len() Function
    • Exercise 19: Creating a Dictionary from User Input
  • Sets
  • *args and **kwargs
6. LESSON 6. Virtual Environments, Packages, and pip
  • Exercise 20: Creating, Activiting, Deactivating, and Deleting a Virtual Environment
  • Packages with pip
    • Exercise 21: Working with a Virtual Environment
    7. LESSON 7. Flow Control
    • Conditional Statements
    • Compound Conditions
    • The is and is not Operators
    • all() and any()
    • Ternary Operator
    • In Between
    • Loops in Python
      • Exercise 22: All True and Any True
    • break and continue
    • Looping through Lines in a File
      • Exercise 23: Word Guessing Game
      • Exercise 24: for…else
    • The enumerate() Function
    • Generators
    • List Comprehensions
    8. LESSON 8. Exception Handling
    • Exception Basics
    • Wildcard except Clauses
    • Getting Information on Exceptions
      • Exercise 25: Raising Exceptions
    • The else Clause
    • The finally Clause
    • Using Exceptions for Flow Control
      • Exercise 26: Running Sum
    • Raising Your Own Exceptions
    9. LESSON 9. Python Dates and Times
    • Understanding Time
    • The time Module.
    • Time Structures
    • Times as Strings
    • Time and Formatted Strings
    • Pausing Execution with time.sleep()
    • The datetime Module
    • datetime.datetime Objects
      • Exercise 27: What Color Pants Should I Wear?
    • datetime.timedelta Objects
      • Exercise 28: Report on Departure Times
    10. LESSON 10. File Processing
    • Opening Files
      • Exercise 29: Finding Text in a File
    • Writing to Files
      • Exercise 30: Writing to Files
      • Exercise 31: List Creator
    • The os Module
    • Walking a Directory
    • The os.path Module
    • A Better Way to Open Files
      • Exercise 32: Comparing Lists
    11. LESSON 11. PEP8 and Pylint
    • PEP8
    • Pylint
  • 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

    20% Off All AI Training Courses

    Achieve more with AI-powered tools and strategies.

    PROMO CODE: AI20
    VALID THROUGH APRIL 30, 2024

    20% Off All AI Training Courses

    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??
    ??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

    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.