“Python Générer un ensemble de nombres aléatoires” Réponses codées

Liste python des valeurs aléatoires

# To create a list of random integer values:
import random
randomlist = random.sample(range(10, 30), 5)
# Output:
# [16, 19, 13, 18, 15]

# To create a list of random float numbers:
import numpy
random_float_array = numpy.random.uniform(75.5, 125.5, 2)
# Output:
# [107.50697835, 123.84889979]
SkelliBoi

Générer un int python aléatoire

import random

random.randint(1, 1000) #inclusive
Gotova

Comment faire un int aléatoire dans Python

random.randint(0, 100)
##This would make the random number be from 0 to 100
CodeSnippet

Python Générer un ensemble de nombres aléatoires

# Loop method
import random
# Empty set for reusability
randomlist = []
# Loop 5 times generating nums 
for i in range(0,5): # 0-4 non-inclusive
	n = random.randint(-10,10) # -10-10 inclusive
	randomlist.append(n)
print(randomlist)
# [7, -4, 8, 6, -5]

# random.sample() method
randomlist2 = []
#Generate 5 random numbers between 10 and 30
randomlist = random.sample(range(10, 30), 5)
print(randomlist2)
# [16, 19, 13, 18, 15]
Agrius

Génération de nombres aléatoires dans Python

>>> import random
>>> print(random.randint(1,100))
54
>>> print(random.randint(1,100))
47
>>> print(random.randint(1,100))
97
>>> print(random.randint(1,100))
37
>>> print(random.randint(1,100))
5
>>> print(random.randint(1,100))
26
>>> print(random.randint(1,100))
76
>>> print(random.randint(1,100))
47
Outrageous Ostrich

Réponses similaires à “Python Générer un ensemble de nombres aléatoires”

Questions similaires à “Python Générer un ensemble de nombres aléatoires”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code