HOME > Development > PCEP – Certified Python Programmer Complete Course Exam

PCEP – Certified Python Programmer Complete Course Exam

  • Development
  • May 10, 2025
SynopsisPCEP – Certified Python Programmer Complete Course & Exam...
PCEP – Certified Python Programmer Complete Course Exam  No.1

PCEP – Certified Python Programmer Complete Course & Exam, available at $64.99, has an average rating of 4.85, with 24 lectures, 13 quizzes, based on 94 reviews, and has 1135 subscribers.

You will learn about Learn how to develop impressing Python applications in a few minutes/ hours. Add Python 3 to your Resume by Understanding Advanced Object-Oriented Programming (OOP) Create Programs using your logic and data structures. How to program the right way. Automate Coding Tasks By Building Custom Python Functions. Use Loops to Improve Efficiency, Save Time, Maximize Productivity. This course is ideal for individuals who are This course is perfect for absolute beginners with no previous coding experience, to intermediates looking to sharpen their skills to the expert level or Complete Programming Beginners. or Anyone who want to learn Python Fundamentals. It is particularly useful for This course is perfect for absolute beginners with no previous coding experience, to intermediates looking to sharpen their skills to the expert level or Complete Programming Beginners. or Anyone who want to learn Python Fundamentals.

Enroll now: PCEP – Certified Python Programmer Complete Course & Exam

Summary

Title: PCEP – Certified Python Programmer Complete Course & Exam

Price: $64.99

Average Rating: 4.85

Number of Lectures: 24

Number of Quizzes: 13

Number of Published Lectures: 24

Number of Published Quizzes: 12

Number of Curriculum Items: 37

Number of Published Curriculum Objects: 36

Original Price: $19.99

Quality Status: approved

Status: Live

What You Will Learn

  • Learn how to develop impressing Python applications in a few minutes/ hours.
  • Add Python 3 to your Resume by Understanding Advanced Object-Oriented Programming (OOP)
  • Create Programs using your logic and data structures.
  • How to program the right way.
  • Automate Coding Tasks By Building Custom Python Functions.
  • Use Loops to Improve Efficiency, Save Time, Maximize Productivity.
  • Who Should Attend

  • This course is perfect for absolute beginners with no previous coding experience, to intermediates looking to sharpen their skills to the expert level
  • Complete Programming Beginners.
  • Anyone who want to learn Python Fundamentals.
  • Target Audiences

  • This course is perfect for absolute beginners with no previous coding experience, to intermediates looking to sharpen their skills to the expert level
  • Complete Programming Beginners.
  • Anyone who want to learn Python Fundamentals.
  • **** This course contains pretty much everything you need to pass the exams. ****

    Welcome to the PCEP – Certified Python Programmer Complete Course by Dr. Chris Mall. This course covers everything you need to know to pass the Python PCEP-30-01 & PCAP-31 Certification Exam.

    This course includes an overview of thePython PCEP Programmer Exams methodology used in a programming environment.

    WHAT YOU’LL RECEIVE IN THIS PYTHON PCEP PROGRAMMER PREPARTION COURSE

    1. Exam block #1: Basic Concepts (17%)

      Objectives covered by the block(5 exam items)

    2. fundamental concepts: interpreting and the interpreter, compilation and the compiler, language elements, lexis, syntax and semantics, Python keywords, instructions, indenting

    3. literals: Boolean, integer, floating-point numbers, scientific notation, strings

    4. comments

    5. the print() function

    6. the input() function

    7. numeral systems (binary, octal, decimal, hexadecimal)

    8. numeric operators: ** * / % // + –

    9. string operators: * +

    10. assignments and shortcut operators

    11. Exam block #2: Data Types, Evaluations, and Basic I/O Operations (20%)

      Objectives covered by the block(6 exam items)

    12. operators: unary and binary, priorities and binding

    13. bitwise operators: ~ & ^ | << >>

    14. Boolean operators: not and or

    15. Boolean expressions

    16. relational operators ( == != > >= < <=), building complex Boolean expressions

    17. accuracy of floating-point numbers

    18. basic input and output operations using the input(), print(), int(), float(), str(), len() functions

    19. formatting print() output with end= and sep= arguments

    20. type casting

    21. basic calculations

    22. simple strings: constructing, assigning, indexing, immutability

    23. Exam block #3: Flow Control – loops and conditional blocks (20%)

      Objectives covered by the block(6 exam items)

    24. conditional statements: if, if-else, if-elif, if-elif-else

    25. multiple conditional statements

    26. the pass instruction

    27. building loops: while, for, range(), in

    28. iterating through sequences

    29. expanding loops: while-else, for-else

    30. nesting loops and conditional statements

    31. controlling loop execution: break, continue

    32. Exam block #4: Data Collections – Lists, Tuples, and Dictionaries (23%)

      Objectives covered by the block(7 exam items)

    33. simple lists: constructing vectors, indexing and slicing, the len() function

    34. lists in detail: indexing, slicing, basic methods (append(), insert(), index()) and functions (len(), sorted(), etc.), del instruction, iterating lists with the for loop, initializing, in and not in operators, list comprehension, copying and cloning

    35. lists in lists: matrices and cubes

    36. tuples: indexing, slicing, building, immutability

    37. tuples vs. lists: similarities and differences, lists inside tuples and tuples inside lists

    38. dictionaries: building, indexing, adding and removing keys, iterating through dictionaries as well as their keys and values, checking key existence, keys(), items() and values() methods

    39. strings in detail: escaping using the character, quotes and apostrophes inside strings, multiline strings, basic string functions.

    40. Exam block #5: Functions (20%)

      Objectives covered by the block(6 exam items)

    41. defining and invoking your own functions and generators

    42. return and yield keywords, returning results,

    43. the None keyword,

    44. recursion

    45. parameters vs. arguments,

    46. positional keyword and mixed argument passing,

    47. default parameter values

    48. converting generator objects into lists using the list() function

    49. name scopes, name hiding (shadowing), the global keyword

    Once you complete this course, you’ll know everything you need to know to pass the PCEP – Certified Entry-Level Python Programmer Certification Exam.

    So What Are You Waiting For?

    Enroll Today!

    Course Curriculum

    Chapter 1: Introduction

    Lecture 1: Introduction

    Lecture 2: 3 Tips to Get Even More Value Out of this Course

    Lecture 3: PCEP: Exam Information

    Lecture 4: Installing Visual Studio Code

    Lecture 5: Introduction to Python 3

    Chapter 2: Exam block #1: Basic Concepts (17%)

    Lecture 1: Variables

    Lecture 2: Python Variables

    Chapter 3: Exam block #2: Data Types, Evaluations, and Basic I/O Operations (20%)

    Lecture 1: Data Types

    Lecture 2: Python Data Types

    Lecture 3: Python Data Type Conversion

    Lecture 4: Variable Operators

    Chapter 4: Exam block #3: Flow Control – loops and conditional blocks (20%)

    Lecture 1: If-Statements and Conditional Logic

    Lecture 2: If-Statements and Conditional Logic in Python 3

    Lecture 3: Loops and Iteration

    Lecture 4: Loops and Iteration in Python – Part 1

    Lecture 5: Loops and Iteration in Python – Part 2

    Chapter 5: Exam block #4: Data Collections – Lists, Tuples, and Dictionaries (23%)

    Lecture 1: Arrays

    Lecture 2: 2D Arrays

    Lecture 3: Multidimensional Arrays & Examples

    Chapter 6: Exam block #5: Functions (20%)

    Lecture 1: Functions

    Lecture 2: Function in Python

    Lecture 3: File Input/ Output

    Lecture 4: Input/ Output and Files in Python

    Lecture 5: Practical Tips for Passing the PCEP – Certified Python Programmer Exam

    Instructors

  • PCEP – Certified Python Programmer Complete Course Exam  No.2
    Dr. Chris Mall ? 35,000+ Students Worldwide
    Scratch | C# | GDPR | Java | Python | C++ | Flutter | CySA+
  • Rating Distribution

  • 1 stars: 2 votes
  • 2 stars: 6 votes
  • 3 stars: 20 votes
  • 4 stars: 28 votes
  • 5 stars: 38 votes
  • Frequently Asked Questions

    How long do I have access to the course materials?

    You can view and review the lecture materials indefinitely, like an on-demand channel.

    Can I take my courses with me wherever I go?

    Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!