现在有个需求,[1,2,3,4,5,6,7,8,9,10],要求每个值都加1.
b=[i *2 for i in range(1,10)] print(b)
python列表生成式
原文:http://www.cnblogs.com/zhangzihong/p/6569092.html