“Python -Zufallsliste” Code-Antworten

Pythonliste von zufälligen Werten

# 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

Zufällige Zeichenfolge aus der Liste Python drucken

import random

list = ["Item 1", "Item 2", "Item 3"]			# List
item = random.choice(list)						# Chooses from list
print(item)					# Prints choice

# From stackoverflow
# Tried and tested method
Fair Finch

Wie man ein zufälliges Element aus einem Array in Python bekommt

import random
names=['Mark', 'Sam', 'Henry']

#Set any array
random_array_item=random.choice(names)

#Declare a variable as a random choice
print(random_array_item)

#Print the random choice
#Or, if you want to arrange them in any order:
for j in range(names):
  print(random.choice(names))
Ugliest Unicorn

Python -Funktion, um die Zufallszahl zu drucken

import random
n = random.randint(0,22)
print(n)
Stupid Stoat

Zufällige Liste Python

import random
#random numbers 0-9 in a list of length 10
array = [random.randint(0,9) for i in range(10)]
print(array)
Angry Anaconda

Python -Zufallsliste

import random
#Generate 5 random numbers between 10 and 30
# sample number needs to be smaller than population
randomlist = random.sample(range(10, 30), 5)
print(randomlist)
Bewildered Booby

Ähnliche Antworten wie “Python -Zufallsliste”

Fragen ähnlich wie “Python -Zufallsliste”

Weitere verwandte Antworten zu “Python -Zufallsliste” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen