There was an error while loading. Please reload this page.
TIP102 Unit 1 Session 1 (Click for link to problem statements)
Understand what the interviewer is asking for by using test cases and questions about the problem.
welcome()
"Welcome to The Hundred Acre Wood!"
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Write a function that prints a predefined string.
1) Define the function `welcome()`. 2) Inside the function, use the `print` statement to output the desired string.
⚠️ Common Mistakes
Implement the code to solve the algorithm.
def welcome(): print("Welcome to The Hundred Acre Wood!")