“Python genera un conjunto de números aleatorios” Código de respuesta

Lista de valores aleatorios de Python

# 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

generar int python

import random

random.randint(1, 1000) #inclusive
Gotova

cómo hacer un int aleatorio en python

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

Python genera un conjunto de números aleatorios

# 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

Generación de números aleatorios en 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

Respuestas similares a “Python genera un conjunto de números aleatorios”

Preguntas similares a “Python genera un conjunto de números aleatorios”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código