TIP102 Unit 1 Session 1 Standard (Click for link to problem statements)
Understand what the interviewer is asking for by using test cases and questions about the problem.
welcome()
is supposed to print the string "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**
- Forgetting to include the exact string format specified in the problem.
- Adding extra spaces or characters in the string.
Implement the code to solve the algorithm.
def welcome():
print("Welcome to The Hundred Acre Wood!")