File size: 226 Bytes
3a8cc58
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11

def predict_dust_index(pm25):
    if pm25 < 12:
        return "Good"
    elif pm25 < 35.5:
        return "Moderate"
    elif pm25 < 55.5:
        return "Unhealthy for Sensitive Groups"
    else:
        return "Unhealthy"