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.
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Make a function that prints an emoji representing today's mood.
1) Create a new function by writing a function signature
2) Create a variable to store the current mood emoji
3) Print "Today's mood:" followed by the value of the variable
3) Call the created function
⚠️ Common Mistakes
def todays_mood():
mood = "🥱"
print("Today's mood: " + mood)
todays_mood()