dice throw program in python code example
Example: dice throw program in python
import random
dice = random.randint(1,6)# you can put any numbers here
print(dice)
import random
dice = random.randint(1,6)# you can put any numbers here
print(dice)