Discuss / Python / 作业

作业

Topic source

一库大神

#1 Created at ... [Delete] [Delete and Lock User]
def is_odd(n):    return n % 2 == 1#替换匿名函数L = list(filter(lambda n: n % 2 == 1, range(1, 10)))print(L)

  • 1

Reply