Discuss / Python / 课堂作业

课堂作业

Topic source
is_odd = lambda n: n % 2 == 1L = list(filter(is_odd, range(1, 20)))print(L)

  • 1

Reply