1312 - 109 LAB Project 2
1312 - 109 LAB Project 2
Section: 109
Grading Marks
Signature: ____________________
Date: ________________________
Project 2
Description
A family plans a day out based on weather conditions: sunny (park), rainy (movie), or cold (stay home). The
program checks temperature and rain status sequentially.
Write a Python program to suggest an activity. Your program should:
• Use sequential execution to:
o Prompt for the temperature (in °C).
o Prompt for whether it’s raining (yes/no).
• Use an if-else statement to decide the activity:
o If temperature > 25°C and not raining, suggest "Go to the park".
o If raining, suggest "Watch a movie".
o Otherwise, suggest "Stay home".
• Ensure proper indentation for all blocks.