Write a random number generator that generates random numbers between 1 and 6 (simulates a dice) | computer science 083 new class 12

'''write a random number generator that generates random numbers between 1 and 6 (simulates a dice).'''


#Source code

import random

def roll_dice():
  print (random.randint(1, 6))

print("""Welcome to my python random dice Program! To start press enter! Whenever you are over, type quit.""")

flag = True
while flag:
   user_prompt = input(">")
   if user_prompt.lower() == "quit":
      flag = False
   else:
     print("Rolling dice...\nYour number is:")
     roll_dice()

#sourceode screenshot 


#Output screenshot 



If you any doubts, Please let me know

Previous Post Next Post

Contact Form