Maison > Article > développement back-end > Conseils pour distinguer randrange() et uniform() en python
Nous pouvons le savoir grâce à la signature de la fonction :
In [7]: random.randrange? Signature: random.randrange(start, stop=None, step=1, _int=<type 'int'>, _maxwidth=9007199254740992L) Docstring: Choose a random item from range(start, stop[, step]). This fixes the problem with randint() which includes the endpoint; in Python this is usually not what you want. File: /usr/lib/python2.7/random.py Type: instancemethod In [8]: random.uniform? Signature: random.uniform(a, b) Docstring: Get a random number in the range [a, b) or [a, b] depending on rounding. File: /usr/lib/python2.7/random.py Type: instancemethod
randrange est sélectionné au hasard dans range(start, stop[, step]), et celui généré doit être int
uniform est from ; [ Générez un nombre aléatoire à partir de a, b) ou [a, b], et celui généré est float
ces deux scénarios d'utilisation sont différents.
【Recommandations associées】
1.Recommandation spéciale : "php Programmer Toolbox" version V0.1 Télécharger
2. Tutoriel vidéo Python gratuit
3 Explication détaillée de uniform() dans les bases de Python
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!