python roll dice 100 times code example
Example: python roll dice 100 times
import random
roll = [random.randint(1,6) for x in range(100)]
print(roll)
import random
roll = [random.randint(1,6) for x in range(100)]
print(roll)