Pythonで乱数を生成するには、 randint()
関数が使用されます。 この関数はで定義されています ランダムモジュール。
ソースコード
# Program to generate a random number between 0 and 9
# importing the random module
import random
print(random.randint(0,9))
出力
5
このプログラムは0から9の範囲の乱数を生成するため、異なる出力が得られる可能性があることに注意してください。この関数の構文は次のとおりです。
random.randint(a,b)
これは数値を返します N 包括的範囲で [a,b]
、意味 a <= N <= b
、エンドポイントが範囲に含まれている場合。
Hope this helps!
Source link