random.random( )
0.0~1.0までのfloat値を取得
random.uniform(x,y)
x~yまでのfloat値を取得
random.randint(x,y)
x~yまでのint値を取得
random.choice(param)
param内から一つの要素を取得
random.shuffle(array)
array内の要素をシャッフル
Go to list of users who liked
More than 5 years have passed since last update.
random.random( )
0.0~1.0までのfloat値を取得
random.uniform(x,y)
x~yまでのfloat値を取得
random.randint(x,y)
x~yまでのint値を取得
random.choice(param)
param内から一つの要素を取得
random.shuffle(array)
array内の要素をシャッフル
Register as a new user and use Qiita more conveniently
Go to list of users who liked