Advertisement
IHATEMICROWAVEOVEN

exp code other version

Dec 20th, 2023 (edited)
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. LVL0 = 1
  2. EXP0 = 0
  3. EXPF = 0
  4. LVLcur = 1
  5. while LVLcur < 101:
  6. LVLF = LVLcur
  7. EXPF = 0
  8. LVLsave = LVLF
  9. EXPsave = EXPF
  10. while LVLF > LVL0:
  11. LVLF -= 1
  12. EXPF += LVLF*2
  13. print("\nBEFORE: LEVEL " + str(LVL0) + " and EXP " + str(EXP0) + "\n FINAL: LEVEL " + str(LVLsave) + " and EXP " + str(EXPsave) + "\nTIME ELAPSED: " + str(EXPF-EXP0))
  14. LVLcur += 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement