python-scripts/scripts/Dice Roll/main.py

10 lines
244 B
Python
Raw Normal View History

2022-10-18 17:27:50 +00:00
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!")