ランダムな整数:
>>> import random >>> random.randint(0,99) 21
0から100までの偶数をランダムに選択:
>>> import random >>> random.randrange(0, 101, 2) 42
ランダムな浮動小数点数:
>>> import random >>> random.random() 0.85415370477785668 >>> random.uniform(1, 10) 5.4221167969800881
ランダムな文字:
>>> import random >>> random.choice('abcdefg&#%^*f') 'd'
複数の文字から特定の数の文字を選択:
>>> import random random.sample('abcdefghij',3) ['a', 'd', 'b']
複数から選択文字 特定の数の文字が新しい文字列を形成します:
>>> import random >>> import string >>> string.join(random.sample(['a','b','c','d','e','f','g','h','i','j'], 3)).r eplace(" ","") 'fih'
文字列をランダムに選択します:
>>> import random >>> random.choice ( ['apple', 'pear', 'peach', 'orange', 'lemon'] ) 'lemon'
シャッフル:
>>> import random >>> items = [1, 2, 3, 4, 5, 6] >>> random.shuffle(items) >>> items [3, 2, 5, 6, 4, 1]
ここにはリストされていないランダムの関数がたくさんあります
以上がPythonの乱数と乱数文字列を詳しく解説の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。