第二章 序列构成的数组

2018-09-20  本文已影响0人  高调的ython
#filter的使用方式 filter(funciton, iterable)两个参数分别是判断函数和可迭代对象
def is_odd(n):
    return n % 2 == 1
 
newlist = filter(is_odd, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
print(newlist)

#map的使用方式map(function, iterable, ...)
def suquare(x):
    return x ** 2

map(square, [1,2,3,4,5]) #计算平方
#tuple
symbols = '12345'
tuple(ord(symbol) for symbol in symbols)
#array
import array
array.array('I', (ord(symbol) for symbol in symbols))
上一篇下一篇

猜你喜欢

热点阅读