# Title: Rain and shine # Author: Jono # Date: 26/06/24 # Version: Version 1 - first version, Version 1.1 - minor revisions # Purpose: Summary of what the code does / The desired outcome. raining = input('Is it raining? ') if raining == 'yes': print('Take an umbrella.') else: print('Take a hat.') Weather = input('What is the weather doing from either rain or shine? ” ')