2018年2月10日

map函数

摘要: 将 列表里的数字平方 num_1 = [2,5,68,4,9] num_0 = [] for i in num_1 : num_0 .append(i**2) print(num_0 ) def map_test(arry): num_0 = [] for i in num_1: num_0.app 阅读全文

posted @ 2018-02-10 15:57 python_an 阅读(106) 评论(0) 推荐(0) 编辑

导航