home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / TemaCD / webclean / !!!python!!! / BeOpen-Python-2.0.exe / RAND.PY < prev    next >
Encoding:
Text File  |  2000-09-28  |  289 b   |  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.