gpt4 book ai didi

python - 将列表的每个元素作为函数的参数发送

转载 作者:行者123 更新时间:2023-12-04 15:25:49 26 4
gpt4 key购买 nike

如何在python中将每个列表元素作为函数参数发送?

list1 = ['38', '39', '40', ...]
any_function(list_item)

我不知道列表的长度,这就是为什么我不能同时将列表的每个元素作为函数参数发送的原因。有什么 Pythonic 的方法吗?

最佳答案

将您的函数参数更改为例如*参数:

list1 = ['38', '39', '40']

def printemall(*args):
print(args)

printemall(list1)
# (['38', '39', '40'],)

printemall(*list1)
# ('38', '39', '40')

关于python - 将列表的每个元素作为函数的参数发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62267795/

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