# Weather Helper
# Provides recommendations based on the weather type
weather = input("How's the weather today? (rainy/sunny/cloudy) ")
if weather == "rainy":
print("Take an umbrella with you!")
elif weather == "sunny":
print("Wear sunscreen today!")
else:
print("Check the forecast for any changes!")
# 1. Add in new weather types
# 2. Make the input case-insensitive using .lower()
# 3. Ask for the temperature and give extra advice (e.g. if it’s hot or cold)
# 4. Build a dictionary of weather messages instead of using if/elif