Heim > Artikel > Backend-Entwicklung > Tipps zur Unterscheidung von randrange() und uniform() in Python
Aus der Funktionssignatur können wir erkennen:
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 wird zufällig aus range(start, stop[, step]) ausgewählt und der generierte Wert muss int sein
uniform is from [ Generieren Sie eine Zufallszahl aus a, b) oder [a, b], und die generierte Zahl ist float; diese beiden Verwendungsszenarien sind unterschiedlich.
Besondere Empfehlung: Download der Version „php Programmer Toolbox“ V0.1
2.Kostenloses Python-Video-Tutorial
Detaillierte Erklärung von uniform() in Python-Grundlagen
Das obige ist der detaillierte Inhalt vonTipps zur Unterscheidung von randrange() und uniform() in Python. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!