commit | c636014c430620325f8d213e9ba10d925991b8d7 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Sat Oct 13 19:23:40 1990 +0000 |
committer | Guido van Rossum <guido@python.org> | Sat Oct 13 19:23:40 1990 +0000 |
tree | 058a21f7da3d8c6e7da0756ef7b1402fe7169a1a | |
parent | df79a1ee192231a75a381798bb35cefaf6c31a2a [diff] [blame] |
Initial revision
diff --git a/Lib/lib-old/rand.py b/Lib/lib-old/rand.py new file mode 100644 index 0000000..0616483 --- /dev/null +++ b/Lib/lib-old/rand.py
@@ -0,0 +1,12 @@ +# Module 'rand' + +import whrandom + +def srand(seed): + whrandom.seed(seed%256, seed/256%256, seed/65536%256) + +def rand(): + return int(whrandom.random() * 32768.0) % 32768 + +def choice(seq): + return seq[rand() % len(seq)]