python这门语言真的是很简洁,同时我们要提高我们的编程效率可以使用一些简单的方式,比如我们今天所说的字典推导和集合推导。

集合推导

list1 = [1,2,3,4,5]
list2 = [x+1 for x in list1]

那么list2的值就是:
[2,3,4,5,6]

字典推导

字典推导也是一样的

dict = { x: x % 2 == 0 for x in range(1, 6) }

那么dict的值就是
{1: False, 2: True, 3: False, 4: True, 5: False}

Last modification:September 10, 2019
If you think my article is useful to you, please feel free to appreciate