#Title: Rain #Author: Damian Clark #Date: 17/06/25 #Version: Version 1 #Purpose: Summary of what the code does / The desired outcome. #Tell: the operator with the program is about 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.') #Tell the user the program has ended print('The program has ended.')