#Title:Weather reccomeder #Author: Tyler Agnew #Date:17/11/25 #Assesment version:1 #purpose:Ask what the weather is like for the auediance, and give a reccomendation on what to do based on their answer. weather=input('What is the weather doing from either rain or shine?').lower() if weather=='rain': print('You should wear a raincoat.') else: print("You don't need a raincoat.") print('The program has ended.')