79326774

Date: 2025-01-03 14:45:25
Score: 0.5
Natty:
Report link

I also found the following code:

import random as rand
numberOfDice = int(input("How many dice do you want to roll? "))
sidesOnADice = int(input("How many sides do you want to roll dice? d"))
for i in range(numberOfDice):
    print(rand.randrange(sidesOnADice) + 1)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pierre 2001