Py.–Random

 0    12 schede    sir
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda Risposta
A random item from a list, tuple, or string.
inizia ad imparare
choice(seq)
A randomly selected element from range(start, stop, step).
inizia ad imparare
randrange ([start,] stop [, step])
A random float r: 0<=r<1
inizia ad imparare
random()
Sets the integer starting value used in generating random numbers. Call this function before calling any other random module function. Returns None.
inizia ad imparare
seed([i'x])
Randomizes the items of a list in place. Returns None.
inizia ad imparare
shuffle(lst)
A random float r, belonging to [x; y)
inizia ad imparare
uniform(x, y)
Returns a list with a random selection from the given sequence
inizia ad imparare
choices(sequence, weights=None, cum_weights=None, k=1)
returns a list with a randomly selection of a specified number of items from a sequnce.
inizia ad imparare
sample(sequence, k)
Returns the current internal state of the random number generator
inizia ad imparare
getstate()
Returns a number representing the random bits
inizia ad imparare
getrandbits()
Get random integer in <start; stop>.
inizia ad imparare
randint(start, stop)
setstate (f'state)
inizia ad imparare
setstate(f'state)

Devi essere accedere per pubblicare un commento.