gpt4 book ai didi

python - builtin_function_or_method' 对象没有属性 shuffle

转载 作者:太空宇宙 更新时间:2023-11-03 15:09:56 24 4
gpt4 key购买 nike

您好,我正在尝试定义一个返回打乱列表 l1 的函数,而不使用 random.shuffle 方法更改原始列表 l,但我收到此错误消息:

builtin_function_or_method 对象没有属性 shuffle

import random
def shuffle_list(l):
l1=random.shuffle(l)
return(l1)

最佳答案

from random import shuffle
def shuffle_list(l):
def shuffle_list(l):
shuffle(l)
return l

直接导入shuffle并返回l,不要将其保存到任何变量中,因为l1 = shuffle(l)将返回None

我知道这已经晚了。

关于python - builtin_function_or_method' 对象没有属性 shuffle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44297063/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com