關(guān)系映射
# map兩個參數(shù)挠唆,一個為函數(shù),另一個為可迭代對象
map(lambda x:x + 1, iterable)
map數(shù)組直接解包
a = [1,2,3,4,5]
b = [*map(lambda x:x*3, a)]
b # [3, 6, 9, 12, 15]
* / **
解壓參數(shù)列表
https://docs.python.org/3/tutorial/controlflow.html#unpacking-argument-lists
http://wulc.me/2016/09/01/python%20%E4%B8%AD%E6%98%9F%E5%8F%B7%E5%8F%82%E6%95%B0%E4%BC%A0%E9%80%92/
https://blog.csdn.net/DawnRanger/article/details/78028171