摘要: remove() 函数用于移除列表中某个值的第一个匹配项。 remove()方法语法: list.remove(obj) 如果obj不在列表中会引发 ValueError 错误,通常先使用count方法查看有多少个obj pop() 函数用于移除列表中的一个元素(默认最后一个元素),并且返回该元素的 阅读全文
posted @ 2019-08-06 22:26 yg_staring 阅读(4709) 评论(0) 推荐(0) 编辑
摘要: a_list = [x for x in range(1, 11)] print(a_list) a_list.append('sdadfewf') # 将整个字符串放到列表的最后 print(a_list) # [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 'sdadfewf'] b_list = [x for x in range(1, 11)] print(b_list) 阅读全文
posted @ 2019-08-06 20:56 yg_staring 阅读(1145) 评论(0) 推荐(0) 编辑
摘要: 在网上搜了一下找到了python中filter、map、reduce的区别,下面的文字纯属复制粘贴,以方便记忆 此链接https://www.cnblogs.com/hnlmy/p/9544835.html有相关的代码以便更直观的理解 filter(function, sequence):对sequ 阅读全文
posted @ 2019-08-06 20:26 yg_staring 阅读(85) 评论(0) 推荐(0) 编辑