# Title: Rain or shine # Author: Hailey Lau # Date: 9/06/25 # Version: Version 1 # Purpose: The purpose of this code is to help the user to make the right decision when it comes to the weather # Ask user for data weather = input('What is the weather doing from either rain or shine? ') # Appying the data to make the right choice if weather == 'rain': print('You should wear a raincoat. ') else: print('You do not need a raincoat. ') # Informing the user that the program has ended print('The program has ended. ')