#!/usr/bis/env python3 #...initalizing looping variable, assume yes as first answer continueT="Y" while continueYN=="Y"; #...get temperature input from the user, prompt them for what we expect degreeF=input ("Enter next temperature in degrees F to check") degreeC=(degreeF-32)* 5/9 print"Temperature in degrees C is:"% degreeC #...check for temperature below freezing... if degreeC <0; print"Pack long underwear!" #...check for it being a very hot day if degreeF>100: print"Remember to hydrate!" continueYN=input("Input another?") #exit the program# your code goes here