Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- LVL0 = 1
- EXP0 = 0
- EXPF = 0
- LVLcur = 1
- while LVLcur < 101:
- LVLF = LVLcur
- EXPF = 0
- LVLsave = LVLF
- EXPsave = EXPF
- while LVLF > LVL0:
- LVLF -= 1
- EXPF += LVLF*2
- print("\nBEFORE: LEVEL " + str(LVL0) + " and EXP " + str(EXP0) + "\n FINAL: LEVEL " + str(LVLsave) + " and EXP " + str(EXPsave) + "\nTIME ELAPSED: " + str(EXPF-EXP0))
- LVLcur += 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement