python-scripts/scripts/Dice Roll/main.py
Asmita-Dutta 1f252887e0 Dice Roll
2022-10-18 22:57:50 +05:30

10 lines
244 B
Python

import random
b=input("Do you want to roll the dice?y/n: ")
if b=='y':
a=int(input("Number of times you want to roll: "))
print("Result: ")
for i in range(0,a):
ans=random.randint(1,6)
print(i+1,".",ans)
else:
print("Good Bye!")