Dice Roll

This commit is contained in:
Asmita-Dutta 2022-10-18 22:57:50 +05:30
parent 4eda20bccd
commit 1f252887e0
2 changed files with 15 additions and 0 deletions

10
scripts/Dice Roll/main.py Normal file
View File

@ -0,0 +1,10 @@
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!")

View File

@ -0,0 +1,5 @@
Dice Roll Game with PYTHON
#Steps :
Run - python main.py
Have a fun time!!