Loading

摘要: 一、常用内置函数 首先先介绍几个常用的内置函数,以下几个函数的功能可以在后续的编写代码中帮助我们简洁、高效地处理一些数据问题,如下: map():映射 list1 = [1, 2, 3, 4, 5] res1 = map(lambda x: x ** 2, list1) print(list(res 阅读全文
posted @ 2021-11-19 19:55 JZEason 阅读(170) 评论(0) 推荐(0) 编辑