What this Python exercise asks you to practise
This scenario tests echo a message. It belongs to the Python Foundations roadmap and uses the input · print pattern.
Programs, values, variables, input(), print(), and basic type conversion.
Program input
One line of text.
Input and expected output
A coding club wants its announcement displayed exactly as entered.
Python practice starts todayPython practice starts todayWhy: input() reads a line as text. print() writes the same value to the console.
A support tool must echo a status message containing spaces and punctuation.
Build #42: ready!Build #42: ready!Why: input() reads a line as text. print() writes the same value to the console.
Reference answer with explanation
message = input()
print(message)input() reads a line as text. print() writes the same value to the console.
Common beginner check: Forgetting that input() returns text, even when the user types a number.
Open the guided learning workspace
Trace the logic and reveal the line-by-line explanation. The browser compiler unlocks with complete access.
Open problem 1Pattern relevance
This exercise strengthens input · print. Be ready to explain the input, the rule, the boundary cases, and why the chosen approach is appropriate.