Full star Half star Star PDF
The Ultimate Training Experience.

Python Beginner Course

(4.83 out of 5) 27 Student Reviews

About the Course

Starting from Python programming basics, this 3-day course will build up your Python skills so that you will be able to write code with confidence and clarity. This course will teach you how to use Python both in scripts and fully-developed modular applications.

Starting from understanding the syntax, formatting, indenting, and developing good practices such as documenting code with comments and docstrings; you will learn how to manage and process different data types, including data stored in various types of collection and external files. You will also learn how to write your own functions and define your own data types and gain a comprehensive understanding of how to use the object-oriented aspects of Python to develop real-world applications. You will learn the best way to discover and handle errors and problems in your code and ways to test your application to avoid future problems.

Who should do this course?

This course is ideal for those who have never used Python before or would like to consolidate their understanding of the fundamentals of Python, so they have a firm foundation to build on.

Prerequisites

Although students would undoubtedly benefit from having some basic programming skills in other languages, especially object-oriented languages, it is not assumed. This course will cover everything you need to know to get started with Python programming.

Course Details

$1980 incl GST

  • Duration:3 Days
  • Max. Class Size:10
  • Avg. Class Size:5
  • Study Mode:
    Classroom Online Live
  • Level:Beginner
  • Course Times: Classroom: 9.00am to 5.00pm approx(Local Time) Online Live: 9.00am to 5.00pm approx(AEST or AEDT)
  • Download Course PDF
Pay Later

Course Dates

Sydney Class Dates

Level 11, 32 Walker Street, North Sydney , NSW 2060

17 - 19 Jun 24 Mon - Wed Classroom
17 - 19 Jun 24 Mon - Wed Online Live
08 - 10 Jul 24 Mon - Wed Online Live
15 - 17 Jul 24 Mon - Wed Classroom
12 - 14 Aug 24 Mon - Wed Online Live
21 - 23 Aug 24 Wed - Fri Classroom
24 - 26 Sep 24 Tue - Thu Online Live
30 Sep - 02 Oct 24 Mon - Wed Classroom
13 - 15 Nov 24 Wed - Fri Classroom
13 - 15 Nov 24 Wed - Fri Online Live
Melbourne Class Dates

Level 12, 379 Collins Street, Melbourne , VIC 3000

29 - 31 May 24 Wed - Fri Classroom
17 - 19 Jun 24 Mon - Wed Online Live
08 - 10 Jul 24 Mon - Wed Classroom
08 - 10 Jul 24 Mon - Wed Online Live
12 - 14 Aug 24 Mon - Wed Online Live
14 - 16 Aug 24 Wed - Fri Classroom
24 - 26 Sep 24 Tue - Thu Online Live
30 Sep - 02 Oct 24 Mon - Wed Classroom
13 - 15 Nov 24 Wed - Fri Classroom
13 - 15 Nov 24 Wed - Fri Online Live
Brisbane Class Dates

Level 6, 371 Queen Street, Brisbane , QLD 4000

17 - 19 Jun 24 Mon - Wed Online Live
08 - 10 Jul 24 Mon - Wed Online Live
12 - 14 Aug 24 Mon - Wed Online Live
24 - 26 Sep 24 Tue - Thu Online Live
13 - 15 Nov 24 Wed - Fri Online Live
Canberra Class Dates

All courses facilitated in, Online Live format ,

17 - 19 Jun 24 Mon - Wed Online Live
08 - 10 Jul 24 Mon - Wed Online Live
12 - 14 Aug 24 Mon - Wed Online Live
24 - 26 Sep 24 Tue - Thu Online Live
13 - 15 Nov 24 Wed - Fri Online Live
Adelaide Class Dates

All courses facilitated in, Online Live format ,

17 - 19 Jun 24 Mon - Wed Online Live
08 - 10 Jul 24 Mon - Wed Online Live
12 - 14 Aug 24 Mon - Wed Online Live
24 - 26 Sep 24 Tue - Thu Online Live
13 - 15 Nov 24 Wed - Fri Online Live
Perth Class Dates

All courses facilitated in, Online Live format ,

17 - 19 Jun 24 Mon - Wed Online Live
08 - 10 Jul 24 Mon - Wed Online Live
12 - 14 Aug 24 Mon - Wed Online Live
24 - 26 Sep 24 Tue - Thu Online Live
13 - 15 Nov 24 Wed - Fri Online Live

Course Units

Unit 1: Getting Started

  • Obtaining and Installing Python
  • Starting Python Command Line REPL
  • Indenting and Structuring Code
  • Understanding the Culture of Python
  • Importing Standard Library Modules
  • Getting Help
  • Understanding Scalar data types: Integers, Floats, None and Bool
  • Using Relational Operators
  • Introducing Control Flow: if-statements and while-loops

Unit 2: Strings and Collections

  • Understanding Strings
  • Understanding Bytes
  • Introducing Lists
  • Introducing Dictionaries
  • Iterating over Series of Items with For-Loops

unit 3: Modularity

  • Organizing Code in a .py file
  • Defining Functions
  • Organizing our Module into Functions
  • Investigating the Python Execution Model
  • Setting up a Main Function with Command Line Argument
  • Including Docstrings in Code
  • Adding Comments to Code

unit 4: Built-in Types and the Object Model

  • Understanding Python Object References
  • Argument Passing Semantics – Pass by Object-Reference
  • Using Python’s Return Semantics
  • Investigating Function Arguments in Detail
  • Understanding the Python Type System
  • Investigating Variable Declaration and Scoping

Unit 5: Exploring Built in Collection Types

  • Understanding Tuples
  • Using the Tuple Constructor
  • Investigating the use of Strings
  • Using Range
  • Using Lists
  • Using Dictionaries
  • Using Sets
  • Understanding Collection Protocols

Unit 6: Exceptions

  • Introducing Exceptions and Control Flow
  • Handling Exceptions
  • Handling Multiple Exceptions
  • Investigating Programmer Errors
  • Defining Empty Blocks Using the Pass Statement
  • Understanding Exception Objects
  • Avoiding Return Codes
  • Re-raising Exceptions
  • Understanding the Importance of Exceptions
  • Validating Data
  • Understanding Exceptions, APIs, and Protocols
  • Choosing not to Guard against TypeError
  • Using Pythonic Style – Deciding Between EAFP and LBYL
  • Clean-up Actions
  • Handling Platform-Specific Code

Unit 7: Comprehensions, Iterables and Generators

  • Introducing Comprehensions
  • Utilising Iteration protocols
  • Creating Generator functions
  • Creating Generator expressions
  • Utilising the “Batteries included” iteration tools
  • Pulling it all together

Unit 8: Defining new Types with Classes

  • Defining classes
  • Defining Instance methods
  • Defining Instance initializers
  • Adding Validation and invariants
  • Adding a second class
  • Understanding Collaborating classes
  • Naming methods for implementation details
  • Deciding between a function and an object
  • Understanding Polymorphism and duck-typing
  • Utilising Inheritance and implementation sharing

Unit 9: Files and Resource Management

  • Understanding files in Python
  • Introducing context managers
  • Using binary files
  • Developing code for other file-like objects
  • Using other resources

Unit 10: Unit Testing with the Python Standard Library

  • Creating test cases
  • Adding fixtures
  • Defining assertions
  • Developing Unit testing through an example.
  • Using fixtures to create temporary files
  • Using the new fixtures
  • Using assertions to test behavior
  • Testing for exceptions
  • Testing for file existence

Unit 11: Debugging with PDB

  • Introducing the debugging commands
  • Using the command to debug code.

Related Courses

Course Reviews

(5.00 out of 5) [ 15 April, 2024 ]

Enjoyed it very much. Got a lot out of it. Was introduction. Look forward to doing next level, one day.

(5.00 out of 5) [ 31 January, 2024 ]

I haven't been to a computer course with so much instructing by the instructor. This was refreshing and made the learning experience much easier to grasp than the first Pythons beginners course I had completed with another company. Even though the content was the same, I felt I had learning nothing in the previous course. Not with this course and instruction method.

(5.00 out of 5) [ 02 August, 2023 ]

I really enjoyed this course and learned a lot. The instructor was very skilled and patient. Instructor explained and cleared my doubts.

(5.00 out of 5) [ 28 June, 2023 ]

It was very interesting and thorough, well paced course, even without knowledge of programming, it was very easy to follow. Thank you!

Read all course reviews

Enquire Now

Fill in your details to have a training consultant contact you to discuss your training needs.

Note: Form fields marked with * are required.

Your details
Please enter a valid email address for shipping updates.
I am enquiring about a...
REQUEST A CALLBACK
A team member will call you at a time convenient to you.
Your message was sent, thank you!
Contact us

Level 11, 32 Walker Street, North Sydney NSW, 2060