# Title: Rain or Shine # Author: Corrin (me) # Date: 9/06/2025 # Version: Version 1 - first version # Purpose: Ask "What is the weather doing from either rain or shine?" # Ask the user a question weather = input("What is the weather doing from either rain or shine?") # Choose between rain and shine if weather =="rain": print("You should wear a raincoat") elif weather =="shine": print("You don't need a raincoat") print("The program has ended")