#Title: Rain or shine #Author: Corban Ngaheu #Date: 9/06/26 #Version: 4 #Purpose: To ask people about the weather 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")