#Title: Rain or shine #Author: kingi harris #Date: 8/06/2026 #Version: 1 #Purpose: The purpose is to ask if the weather is rain or shine and to display #a message that tells you what to do if its 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 dont need a raincoat') print('The program has ended')