gpt4 book ai didi

返回列表的 Python 函数

转载 作者:行者123 更新时间:2023-12-01 01:06:52 24 4
gpt4 key购买 nike

这里是Python新手。我编写了这个函数,只将偶数作为列表返回,但我没能做到这一点。你能帮忙吗?这是我最初的函数,运行良好,但结果没有以列表的形式出现:

def myfunc (*args):
for num in args:
if num % 2 == 0:
print (num)

例如,当您使用以下参数调用该函数时:

myfunc(1,2,3,4,5,6,7,8,9,10)

我得到:

2
4
6
8
10

但我需要将它们放在列表中,我缺少什么?这也不起作用:

list = []
def myfunc (*args):
for num in args:
if num % 2 == 0:
print (list[num])

非常感谢!

最佳答案

def myfunc (*args):
mylist = []
for num in args:
if num % 2 == 0:
mylist.append(num)
return mylist

关于返回列表的 Python 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55252934/

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