- A
Rewrite as: [line for line in lines if 'ERROR' in line]
Why wrong: Returns the whole line, not just message.
- B
Change the list to a dictionary
Why wrong: Unnecessary.
- C
Swap the order of the for clauses to: [msg for line in lines for timestamp, msg in line.split(': ') if 'ERROR' in msg]
Why wrong: Still crashes because line.split(': ') returns list, not unpackable.
- D
Rewrite as: [msg for line in lines if 'ERROR' in line for msg in [line.split(': ')[1]]]
Correct nested comprehension.
Quick Answer
The correct fix is to rewrite the comprehension as `[msg for line in lines if 'ERROR' in line for msg in [line.split(': ')[1]]]`. This works because the original code attempts to unpack each line into `timestamp` and `msg` using `line.split(': ')`, but if a line contains extra colons or no colon at all, the split produces more or fewer than two parts, triggering a `ValueError: not enough values to unpack`. By first filtering lines with `if 'ERROR' in line` and then safely extracting the message via `line.split(': ')[1]` inside a nested list, you avoid unpacking entirely. On the PCEP exam, this tests your understanding of list comprehension unpack ValueError Python—a common trap is assuming all lines have exactly two colon-separated fields. The exam often presents a log-parsing scenario where you must separate filtering from unpacking to prevent crashes. Remember the memory tip: filter first, then extract by index—never unpack what you haven’t validated.
PCEP Control Flow, Loops, Lists and Logic Practice Question
This PCEP practice question tests your understanding of control flow, loops, lists and logic. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
You are writing a script to parse a log file. Each line in the log contains a timestamp and a message separated by a colon. You need to extract only the messages that contain the word 'ERROR'. The script uses a list comprehension to filter lines. However, the script crashes with a 'ValueError: not enough values to unpack' when processing some lines. The code is:
lines = ['2024-01-01 12:00:00: INFO: all good', '2024-01-01 12:01:00: ERROR: something wrong'] errors = [msg for timestamp, msg in line.split(': ') for line in lines if 'ERROR' in msg]
What is the correct fix?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Rewrite as: [msg for line in lines if 'ERROR' in line for msg in [line.split(': ')[1]]]
Option D is correct because it properly separates the filtering and unpacking steps. The original code attempts to unpack each line into timestamp and msg using `line.split(': ')`, but some lines may not contain exactly two parts after splitting (e.g., if the colon is missing or there are extra colons), causing a ValueError. Option D first filters lines containing 'ERROR', then safely extracts the message part by splitting and taking index [1] inside a nested comprehension, avoiding the unpacking error.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Rewrite as: [line for line in lines if 'ERROR' in line]
Why it's wrong here
Returns the whole line, not just message.
- ✗
Change the list to a dictionary
Why it's wrong here
Unnecessary.
- ✗
Swap the order of the for clauses to: [msg for line in lines for timestamp, msg in line.split(': ') if 'ERROR' in msg]
Why it's wrong here
Still crashes because line.split(': ') returns list, not unpackable.
- ✓
Rewrite as: [msg for line in lines if 'ERROR' in line for msg in [line.split(': ')[1]]]
Why this is correct
Correct nested comprehension.
Related concept
Read the scenario before looking for a memorised answer.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Python Institute often tests the order of `for` clauses in nested list comprehensions and the assumption that `split()` always returns a fixed number of parts, leading candidates to choose Option C which only reorders loops without fixing the unpacking error.
Detailed technical explanation
How to think about this question
List comprehensions in Python allow nested loops and conditional filtering, but unpacking in a comprehension requires that each iterated element has the exact number of items expected. The `split(': ')` method returns a list whose length depends on the number of colons in the string; if a line lacks a colon or has multiple colons, unpacking fails. A safer approach is to split and index, or use a generator with try/except, but the exam expects understanding of comprehension ordering and safe extraction.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A practitioner preparing for the PCEP exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Control Flow, Loops, Lists and Logic — study guide chapter
Learn the concepts, then practise the questions
- →
Control Flow, Loops, Lists and Logic practice questions
Targeted practice on this topic area only
- →
All PCEP questions
510 questions across all exam domains
- →
Certified Entry-Level Python Programmer PCEP study guide
Full concept coverage aligned to exam objectives
- →
PCEP practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related PCEP practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Computer Programming and Python Fundamentals practice questions
Practise PCEP questions linked to Computer Programming and Python Fundamentals.
Data Types, Variables, Basic I/O and Operators practice questions
Practise PCEP questions linked to Data Types, Variables, Basic I/O and Operators.
Control Flow, Loops, Lists and Logic practice questions
Practise PCEP questions linked to Control Flow, Loops, Lists and Logic.
Functions, Tuples, Dictionaries and Exceptions practice questions
Practise PCEP questions linked to Functions, Tuples, Dictionaries and Exceptions.
PCEP fundamentals practice questions
Practise PCEP questions linked to PCEP fundamentals.
PCEP scenario practice questions
Practise PCEP questions linked to PCEP scenario.
PCEP troubleshooting practice questions
Practise PCEP questions linked to PCEP troubleshooting.
Practice this exam
Start a free PCEP practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this PCEP question test?
Control Flow, Loops, Lists and Logic — This question tests Control Flow, Loops, Lists and Logic — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Rewrite as: [msg for line in lines if 'ERROR' in line for msg in [line.split(': ')[1]]] — Option D is correct because it properly separates the filtering and unpacking steps. The original code attempts to unpack each line into timestamp and msg using `line.split(': ')`, but some lines may not contain exactly two parts after splitting (e.g., if the colon is missing or there are extra colons), causing a ValueError. Option D first filters lines containing 'ERROR', then safely extracts the message part by splitting and taking index [1] inside a nested comprehension, avoiding the unpacking error.
What should I do if I get this PCEP question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 30, 2026
This PCEP practice question is part of Courseiva's free Python Institute certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PCEP exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.