Advertisement
OrFeAsGr

Untitled

Jan 5th, 2025 (edited)
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.57 KB | None | 0 0
  1.         if t <= -23:
  2.             c = "13"
  3.         elif t > -23 and t <= -12:
  4.             c = "06"
  5.         elif t > -12 and t <= -7:
  6.             c = "12"
  7.         elif t > -7 and t <= -1:
  8.             c = "11"
  9.         elif t > -1 and t <= 4:
  10.             c = "03"
  11.         elif t > 4 and t <= 10:
  12.             c = "09"
  13.         elif t > 10 and t <= 16:
  14.             c = "08"
  15.         elif t > 16 and t <= 27:
  16.             c = "07"
  17.         elif t > 27 and t <= 32:
  18.             c = "04"
  19.         elif t > 32 and t <= 40:
  20.             c = "04"
  21.         else:
  22.             c = "05"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement