#Title: Rain or shine #Author: Otis Keeble #Date: 04/06/2026 #Version: 1 #Purpose: Ask whether the weather is rain or shine and then display different messages depending on if it is rain or shine. weather = input('What is the weather doing from either rain or shine? ') if weather == 'rain': print('You should wear a raincoat') else: print("You don't need a raincoat") print('The program has ended.')