Discuss / Python / 作业

作业

Topic source

愚者长安

#1 Created at ... [Delete] [Delete and Lock User]
L = list(filter(lambda n: n % 2 == 1, range(1, 10)))
print(L)

L = list(filter(lambda x:x%2, range(1, 20)))


  • 1

Reply