Movatterモバイル変換


[0]ホーム

URL:


Google Git
Sign in
chromium /external /github.com /python /cpython /refs/tags/v1.0.1 /. /Lib /rand.py
blob: c299d0a9a95d6a10a332da9613d753f3683c3781 [file] [log] [blame]
# Module 'rand'
# Don't use unless you want compatibility with C's 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)]

[8]ページ先頭

©2009-2025 Movatter.jp