我一直在尝试弄清函数与整数使用之间的关系,看来我的代码不会返回答案,我是否缺少一些对完成代码至关重要的内容
def removeEven(listofint):
oddlist=[]
for n in listofint:
if(n%2==1):
oddlist.append(n)
return oddlist
removeEven([8,3,11,5,2,21,38,1,7])
答案 0 :(得分:0)
DiskCacheStrategy.onlyRetrieveFromCache(true)
def removeEven(listofint):
oddlist=[]
for n in listofint:
if(n%2==1):
oddlist.append(n)
return oddlist
正确缩进代码后,它对我有用。