Home > Backend Development > Python Tutorial > Why Does Python\'s `random.shuffle()` Return None?

Why Does Python\'s `random.shuffle()` Return None?

Patricia Arquette
Release: 2024-11-26 10:20:10
Original
537 people have browsed it

Why Does Python's `random.shuffle()` Return None?

Why Random.shuffle() Returns None

Python's random.shuffle() function may appear to return None in certain situations. Understanding the purpose of random.shuffle() is crucial to resolving this issue.

random.shuffle() is used to shuffle a list in place. Unlike many functions that return a modified copy of a structure, random.shuffle() modifies the original list without creating a new one. Therefore, when calling random.shuffle(x), x itself is shuffled, and None is returned as the function does not explicitly generate a new list.

Getting the Shuffled Value

To obtain the shuffled value, simply print or access the original list after calling random.shuffle().

import random
x = ['foo', 'bar', 'black', 'sheep']
random.shuffle(x)
print(x)  # Prints the shuffled list
Copy after login

Creating a New Shuffled List

If you want to create a new randomly shuffled list without modifying the original one, use either random.sample() or sorted().

Using random.sample():

import random
x = ['foo', 'bar', 'black', 'sheep']
shuffled_list = random.sample(x, len(x))
Copy after login

Using sorted():

import random
x = ['foo', 'bar', 'black', 'sheep']
shuffled_list = sorted(x, key=lambda k: random.random())
Copy after login

The above is the detailed content of Why Does Python\'s `random.shuffle()` Return None?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template