if level < 3:
return "Low UV Index - Minimal protection required."
elif level < 6:
return "Moderate UV Index - Wear sunscreen and protective clothing."
elif level < 8:
return "High UV Index - Take extra precautions. Stay in shade near midday."
elif level < 11:
return "Very High UV Index - Protection against sun damage is needed."
else:
return "Extreme UV Index - Take all precautions. Avoid outdoor activities."
uv_index = 7
recommendations = get_uv_index(uv_index)
print("UV Index Level:", uv_index) print("Recommendations:", recommendations)