#Title:rain or shine #Eli O'Fee #8/06/26 #version:1 #to ask for the weather (rain or shine)then give advise on weather or not to wear a rain jacket weather = input('what is the weather doing from either rain to shine? ') if weather == 'rain': print('You should wear a raincoat') elif weather == 'shine': print("You don't need a raincoat") print('The program has ended.')