#activities.py # 0 32 70 85 # dance skiing golf tennis swimming temp = eval(input("Enter temperature in degrees fahrenheit: ")) if temp >= 100: print("Too hot for any activity!") else: print("Recommended activity is: ") if temp >= 85: print("swimming") elif temp >= 70: print("tennis") elif temp >= 32: print("golf") elif temp >= 0: print("skiing") else: print("dancing")