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