# Author: James Tam # Version: September 29, 2014 # Simulates a 100 sided die roll # (Application: simulations or games that require percentages/ # probabilities e.g., Role playing games were skills increase as # levels increase, the higher the skill level the greater the # chance of success. import random result = random.randrange(1,101) print(result)