PCEP Practice Question: Data Types, Variables, Basic I/O and Operators
A developer writes a script to read user input using input() and then prints it. However, the program crashes when the user enters a number. What is the most likely cause?
⚠ Common exam trap
Python Institute often tests the misconception that `input()` can return different types based on the input, when in Python 3 it always returns a string, leading candidates to overlook the need for explicit conversion.
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
✓
The input is read as a string, but the code treats it as a number without conversion.
The `input()` function in Python 3 always returns a string, regardless of what the user types. If the user enters a number, the program may crash if the code later performs an operation (like arithmetic or comparison) on that string without first converting it to an integer or float using `int()` or `float()`. This mismatch between the string type and the expected numeric type causes a `TypeError`.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
The input is read as a string, but the code treats it as a number without conversion.
Why this is correct
Correct: input() returns a string, so numeric operations fail.
- ✗
The script uses Python 2, where input() evaluates input as code.
Why it's wrong here
Incorrect: Python 2 input() is risky, but the question implies Python 3.
- ✗
The print() function expects a string, but the input is a number.
Why it's wrong here
Incorrect: print() can output any type.
- ✗
The input() function cannot handle numeric input.
Why it's wrong here
Incorrect: input() can handle any input, including numbers, as a string.
Go deeper
Related to this question
About these practice questions
One of 498 original PCEP practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
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.