Guest User

Untitled

a guest
Jun 25th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.36 KB | None | 0 0
  1. difficulties = ["Beginner", "Easy", "Normal", "Hard", "Too Hard"]
  2. for initSetting in range(5):
  3.     difficultyProgression = str(initSetting)+": "
  4.     difficulty = float(initSetting)
  5.     for missionNo in range(12):
  6.         difficultyProgression += difficulties[int(difficulty)]+", "
  7.         difficulty += (5 - difficulty) / 10;
  8.     print(difficultyProgression[:-2])
Add Comment
Please, Sign In to add comment