Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. def Reclass(Percent):
  2. if Percent >= 80:
  3. return 5
  4. elif Percent >= 60 and Percent < 80:
  5. return 4
  6. elif Percent >= 40 and Percent < 60:
  7. return 3
  8. elif Percent >= 20 and Percent < 40:
  9. return 2
  10. elif Percent >= 0 and Percent < 20:
  11. return 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement