这是我目前的代码.它接受一个列表并将其与一个整数进行比较,然后生成一个新的大于整数“thresh”的数字列表.然而现在它还没有这样做.
a = [1, 2, 4, 6, 7, 8]
thresh = 4
def biggerThan(a, thresh):
newList = []
for i in a:
if i> thresh:
newList.append(i)
if len(newList) == 0:
return None
else:
return newList
biggerThan([1,2,3,4],4)
我试着预先声明a和thresh,并且在函数的def之后调用了arbuments。
1条答案
按热度按时间jbose2ul1#
你的代码很好!你只需要在调用你的函数时使用变量
a
。biggerThan(a,4)