Become PCPP1™ certified and take your career to the next level

PCPP1™ – Certified Professional in Python Programming 1 certification is the first of the two-series General-Purpose Programming track professional credentials from the OpenEDG Python Institute addressed to developers, IT specialists, and working professionals looking to obtain an industry credential that documents their skills and expertise in the advanced and more specialized aspects of computer programming and the Python language.

To learn more about Python Programming, take a read of this blog: Your Ultimate Guide to Python Programming in Malaysia in 2024

Overview

Program your future with Python Institute.

PCPP1™ – Certified Professional in Python Programming 1 certification (Exam PCPP-32-101) is a professional credential that measures the candidate’s ability to accomplish coding tasks related to advanced programming in the Python language and related technologies, advanced notions and techniques used in object-oriented programming, the use of selected Python Standard Library modules and packages, designing, building and improving programs and applications utilizing the concepts of GUI and network programming, as well as adopting the coding conventions and best practices for code writing.

The PCPP1 certification shows that the individual is familiar with the following concepts:

  • Advanced use of classes and modelling real-life problems in the OOP categories (classes, instances, attributes, methods; class and instance data; shallow and deep operations; inheritance and polymorphism; extended function argument syntax and decorators; static and class methods; attribute encapsulation; composition and inheritance; advanced exceptions; copying object data; serialization; metaclasses),
  • Best practices and standardization (PEP8, PEP 257, code layout, comments and docstrings, naming conventions, string quotes and whitespaces, programming recommendations),
  • GUI programming (events, widgets, geometry, tools and toolkits, conventions),
  • Elements of network programming (network sockets, client-server communication, JSON and XML files in network communication, HTTP methods, CRUD, building a simple REST client),
  • File processing and communicating with a program’s environment (processing files: sqlite3, xml, csv, logging, and configparser; communication: os, datetime, io, and time).

Skills Covered

  • Please refer to course overview

Prerequisites

Basic Python programming knowledge in highly recommended or have attended any of the following courses:

 

Target Audience

  • learners looking to boost their skills and knowledge for a junior-level and middle-level role as a software developernetwork programmerdata analyst, or tester;
  • industry professionals wishing to explore technologies that are connected with Python, or that utilize it as a foundation;
  • team leadersproduct managers, and project managers who want gain an in-depth understanding of the terminology and processes in the software development cycle to more effectively manage and communicate with production, QA, and development teams.

Python is either the highest-paid, or one of the highest-paid languages in all parts of the world today, and the salaries range between $90,000 and $130,000 a year (source: SalaryExpert.com).

With the ever-increasing reliance on the Internet, and with Python playing an ever-growing role, the salary of the average Python programmer is almost surely to rise.

Currently, there are 100,000+ unfulfilled Python jobs around the world, and the supply of qualified Python programmers is unable to match the demand.

Course Curriculum

Module 1: Advanced Object-Oriented Programming (25%)
1.1 – Understand and explain the basic terms and programming concepts used in the OOP paradigm

  • essential terminology: class, instance, object, attribute, method, type, instance and class variables, superclasses and subclasses
  • reflexion: isinstance()issubclass()
  • the __init__() method
  • creating classes, methods, and class and instance variables; calling methods; accessing class and instance variables

1.2 – Perform Python core syntax operations

  • Python core syntax expressions – magic methods: comparison methods (e.g. __eq__(self, other)), numeric methods (e.g. __abs__(self)), type conversion methods (e.g. __init__(self)), object intro- and retrospection (e.g. __str__(self)__instancecheck__(self, object)), object attribute access (e.g. __getattr__(self, attribute)), accessing containers (e.g. __getitem__(self, key))
  • operating with special methods
  • extending class implementations to support additional core syntax operations

1.3 Understand and use the concepts of inheritance, polymorphism, and composition

  • class hierarchies
  • single vs. multiple inheritance
  • Method Resolution Order (MRO)
  • duck typing
  • inheritance vs. composition
  • modelling real-life problems using the “is a” and “has a” relations

1.4 Understand the concept of extended function argument syntax and demonstrate proficiency in using decorators

  • special identifiers: *args**kwargs
  • forwarding arguments to other functions
  • function parameter handling
  • closures
  • function and class decorators
  • decorating functions with classes
  • creating decorators and operating with them: implementing decorator patterns, decorator arguments, wrappers
  • decorator stacking
  • syntactic sugar
  • special methods: __call____init__

1.5 Design, build, and use Python static and class methods

  • implementing class and static methods
  • class vs. static methods
  • the cls parameter
  • the @classmethod and @staticmethod decorators
  • class methods: accessing and modifying the state/methods of a class, creating objects

1.6 Understand and use Python abstract classes and methods

  • abstract classes and abstract methods: defining, creating, and implementing abstract classes and abstract methods
  • overriding abstract methods
  • implementing a multiple inheritance from abstract classes
  • delivering multiple child classes

1.7 Understand and use the concept of attribute encapsulation

  • definition, meaning, usage
  • operating with the gettersetter, and deleter methods

1.8 Understand and apply the concept of subclassing built-in classes

  • inheriting properties from built-in classes
  • using the concept of subclassing the built-ins to extend class features and modify class methods and attributes

1.9 Demonstrate proficiency in the advanced techniques for creating and serving exceptions

  • exceptions as objects, named attributes of exception objects, basic terms and concepts
  • chained exceptions, the __context__ and __cause__ attributes, implicitly and explicitly chained exceptions
  • analyzing exception traceback objects, the __traceback__ attribute
  • operating with different kinds of exceptions

1.10 Demonstrate proficiency in performing shallow and deep copy operations

  • shallow and deep copies of objects
  • object: label vs. identity vs. value
  • the id() function and the is operand
  • operating with the copy() and deepcopy() methods

1.11 Understand and perform (de)serialization of Python objects

  • object persistence, serialization and deserialization: meaning, purpose, usage
  • serializing objects as a single byte stream: the pickle module, pickling various data types
  • the dumps() and loads functions
  • serializing objects by implementing a serialization dictionary: the shelve module, file modes, creating chelve objects

1.12 Understand and explain the concept of metaprogramming

  • metaclasses: meaning, purpose, usage
  • the type metaclass and the type() function
  • special attributes: __name____class____bases____dict__
  • operating with metaclasses, class variables, and class methods

Module 2: Coding Conventions, Best Practices, and Standardization (12%)
2.1 – Understand and explain the concept of Python Enhancement Proposals and Python philosophy

  • the PEP concept and selected PEPs: PEP 1, PEP 8, PEP 20, PEP 257
  • PEP 1: different types of PEPs, formats, purpose, guidelines
  • PEP 20: Python philosophy, its guiding principles, and design; the import this instruction and PEP 20 aphorisms

2.2 – Employ the PEP 8 guidelines, coding conventions, and best practices

  • PEP 8 compliant checkers
  • recommendations for code layout: indentation, continuation lines, maximum line length, line breaks, blank lines (vertical whitespaces)
  • default encodings
  • module imports
  • recommendations for string quotes, whitespace, and trailing commas: single-quoted vs. double-quoted strings, whitespace in expressions and statements, whitespace and trailing commas
  • recommendations for using comments: block comments, inline comments
  • documentation strings
  • naming conventions: naming styles, recommendations
  • programming recommendations

2.3 – Employ the PEP 257 guidelines, conventions, and best practices

  • docstrings: rationale, usage
  • comments vs. docstrings
  • PEP 484 and type hints
  • creating, using, and accessing docstrings
  • one-line vs. multi-line docstrings
  • documentation standards, linters, fixers

Module 3: GUI Programming (20%)
3.1 – Understand and explain the basic concepts and terminology related to GUI programming

  • GUI: meaning, rationale, basic terms and definitions
  • visual programming: examples, basic features
  • widgets/controls – basic terms: windows, title and title bars, buttons, icons, labels, etc.
  • classical vs. event-driven programming
  • events – basic terms
  • widget toolkits/GUI toolkits

3.2 – Use GUI toolkits, basic blocks, and conventions to design and build simple GUI applications

  • importing tkinter components
  • creating an application’s main window: the Tk()mainloop(), and title methods
  • adding widgets to the window: buttons, labels, frames, the place() method, widget constructors, location, screen coordinates, size, etc.
  • launching the event controller: event handlers, defining and using callbacks, the destroy() method, dialog boxes
  • shaping the main window and interacting with the user
  • checking the validity of user input and handling errors
  • working with Canvas and its methods
  • using the EntryRadiobutton, and Button widgets
  • managing widgets with the grid and place managers
  • binding events using the bind() method

3.3 – Demonstrate proficiency in using widgets and handling events

  • settling widgets in the window’s interior, geometry managers
  • coloring widgets, color modes: RGB, HEX
  • event handling: writing event handlers and assigning them to widgets
  • event-driven programming: implementing interfaces using events and callbacks
  • widget properties and methods
  • variables: observable variables and adding observers to variables
  • using selected clickable and non-clickable widgets
  • identifying and servicing GUI events

Module 4: Network Programming (18%)
4.1 – Understand and explain the basic concepts of network programming

  • REST
  • network sockets
  • Domains, addresses, ports, protocols, and services
  • Network communication: connection-oriented vs. connectionless communication, clients and servers

4.2 – Demonstrate proficiency in working with sockets in Python

  • the socket module: importing and creating sockets
  • connecting sockets to HTTP servers, closing connections with servers
  • sending requests to servers, the send() method
  • receiving responses from servers, the recv() method
  • exception handling mechanisms and exception types

4.3 – Employ data transfer mechanisms for network communication

  • JSON: syntax, structure, data types (numbers, strings, Boolean values, null), compound data (arrays and objects), sample JSON documents and their anatomies
  • the json module: serialization and deserialization, serializing Python data/deserializing JSON (the dumps() and loads methods), serializng and deserializing Python objects
  • XML: syntax, structure, sample xml documents and their anatomies, DTD, XML as a tree
  • processing xml files

4.4 – Design, develop, and improve a simple REST client

  • the request module
  • designing, building, and using testing environments
  • HTTP methods: GETPOSTPUTDELETE
  • CRUD
  • adding and updating data
  • fetching and removing data from servers
  • analyzing the server’s response
  • response status codes

Module 5: File Processing and Communicating with a Program’s Environment(15%)
5.1 – Demonstrate proficiency in database programming in Python

  • the sqlite module
  • creating and closing database connection using the connect and close methods
  • creating tables
  • inserting, reading, updating, and deleting data
  • transaction demarcation
  • cursor methods: executeexecutemanyfetchonefetchall
  • creating basic SQL statements (SELECTINSERT INTOUPDATEDELETE, etc.)

5.2 – Demonstrate proficiency in processing different file formats in Python

  • parsing XML documents
  • searching data in XML documents using the find and findall methods
  • building XML documents using the Element class and the SubElement function
  • reading and writing CSV data using functions and classes: readerwriterDictReaderDictWriter
  • logging events in applications
  • working with different levels of logging
  • using LogRecord attributes to create log formats
  • creating custom handlers and formatters
  • parsing and creating configuration files using the ConfigParser object
  • interpolating values in .ini files

Dates & Locations

Let’s make it work for you

Can’t find a date that fits? Need to train your whole team? Looking for a discount?
Speak to one of our learning experts today.

There’s no intakes scheduled for this course at the moment!

For enquiries, please contact our reps.

Exam & Certification

Certified Professional in Python Programming 1 

Becoming PCPP1™ certified ensures that the individual is fully acquainted with all the essential, intermediate, and advanced means provided by Python 3 and related technologies to enable them to advance their career as a professional Python developer and continue studies at the advanced level.

PCPP1™ certification is a professional high-stakes credential, an interim step to the PCPP2™ certification, and the means to demonstrate high-level Python expertise across multiple fields of programming in Python and using related technologies. Becoming PCPP1™ certified shows that the certification holder possesses a high degree of technical knowledge, work independence, and the skills that allow them to pursue programming careers at junior and middle level.

Training & Certification Guide

  • Exam name: PCPP1™ – Certified Professional in Python Programming 1
  • Exam Code & Current Exam Versions: PCPP-32-101 (Status: Active)
  • Pre-requisites: PCAP – Certified Associate in Python Programming (Exam PCAP-31-0x)
  • Validity: Lifetime
  • Exam Duration: Exam: 65 minutes, NDA/Tutorial: 10 minutes
  • Number of Questions: 45
  • Format: Single- and multiple-select questions | Python 3.x
  • Passing Score: 70%
  • Languages: English
  • Cost: USD 195 (Exam)

Why train with Trainocate

Speak to a Training Consultant

All courses are HRD Claimable.
Get in touch with our team via the form or WhatsApp us on +6011-5119 6631

Preferred mode of training
Checkboxes