摘要: python基础 列表list(动态数组) 初始化方法: nums = [] nums = [1,3,5] n = 10 nums = [0] * n m, n = 3, 4 matrix = [[1] * n for _ in range(m)] 常用方法 nums = [0] * 10 prin 阅读全文
posted @ 2025-12-11 00:24 晏多乐 阅读(1) 评论(0) 推荐(0)