home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyos2bin.zip / Lib / rand.py < prev    next >
Text File  |  1991-08-16  |  276b  |  14 lines

  1. # Module 'rand'
  2. # Don't use unless you want compatibility with C's rand()!
  3.  
  4. import whrandom
  5.  
  6. def srand(seed):
  7.     whrandom.seed(seed%256, seed/256%256, seed/65536%256)
  8.  
  9. def rand():
  10.     return int(whrandom.random() * 32768.0) % 32768
  11.  
  12. def choice(seq):
  13.     return seq[rand() % len(seq)]
  14.