python里的列表list使用范例代码
""" 作者:皮蛋编程(https://www.pidancode.com) 创建日期:2022/3/19 功能描述:python里的列表list使用范例代码 """ # 新建列表 testList = ['pidancode.com', '皮蛋编程', [1, 2, 4, 5]] # 访问列表长度 print(len(testList)) # 从第二项到列表结尾 print(testList[1:]) # 向列表添加元素 testList.append('https://www.pidancode.com') print(len(testList)) # 弹出列表最后一个元素 print(testList[-1]) # 弹出列表的第二个元素 print(testList.pop(1)) # 获取列表的长度 print(len(testList)) # 打印列表 print(testList) # 二维数组 matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] print(matrix) print(matrix[1]) # 输出一列 col2 = [row[1] for row in matrix] print(col2) # 过滤掉奇数 col2even = [row[1] for row in matrix if row[1] % 2 == 0] print(col2even)
代码输出结果如下:
3
['皮蛋编程', [1, 2, 4, 5]]
4
https://www.pidancode.com
皮蛋编程
3
['pidancode.com', [1, 2, 4, 5], 'https://www.pidancode.com']
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
[4, 5, 6]
[2, 5, 8]
[2, 8]
以上代码在python3.9环境下测试通过
相关文章