我不确定为什么我的编码不起作用,它应该只返回括号中的偶数列表(如列表)。错误消息只是在解析'时说出了“意外的EOF”。我不知道这意味着什么。谢谢你的帮助!
def chooseEven(nums):
newList = list()
for num in nums:
if num%2==0:
newList.append(num)
return newList
chooseEven([1, 2, 3, 4, 5, 6])