Discuss / Python / 打卡Day8

打卡Day8

Topic source

VH立华

#1 Created at ... [Delete] [Delete and Lock User]

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

[1, 3, 5, 7, 9, 11, 13, 15, 17, 19]


  • 1

Reply