Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
3f5da24ea304e674a9abbdcffc4d671e32aa70f1
/
.
/
Lib
/
rand.py
blob: 06164833284faaca8abb6043d8d4e38bbeb92cee [
file
]
# 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
)]