Demonstrates random number generation : Random : Development PYTHON examples


PYTHON examples » Development » Random »

 

Demonstrates random number generation


 

import random

# generate random numbers 6
die1 = random.randrange(61    
die2 = random.randrange(61

total = die1 + die2

print "You rolled a", die1, "and a", die2, "for a total of", total

raw_input("nnPress the enter key to exit.")

   
  



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Development
» Random