dice problem in python code example
Example 1: how to make a dice program in python
import random
run = 1
level = 0
while(run == 1):
print("**ROUND " + str(level) + "**")
print("player 1: ",random.randint(0, 6))
print("player 2: ",random.randint(0, 6))
run = int(input("enter 1 to go again or 0 to end: "))
print("")
level += 1
Example 2: python 10 sided dice method
python 10 sided dice method