0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00
cpython/Lib/rand.py

14 lines
276 B
Python
Raw Normal View History

1990-10-13 20:23:40 +01:00
# Module 'rand'
1991-08-16 15:28:11 +02:00
# Don't use unless you want compatibility with C's rand()!
1990-10-13 20:23:40 +01:00
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)]