Advertisement
lastofspades

egg

Apr 21st, 2021 (edited)
1,333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. if profile['games_played'] >= 120:
  2.     rank = "`Diamond Yolk`"
  3. elif profile['games_played'] >= 100:
  4.     rank = "`Golden Yolk`"
  5. elif profile['games_played'] >= 80:
  6.     rank = "`Sergeant Shell`"
  7. elif profile['games_played'] >= 60:
  8.     rank = "`Fried Egg`"
  9. elif profile['games_played'] >= 40:
  10.     rank = "`Omelette`"
  11. else:
  12.     rank = "`Baby Chick`"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement