python中的二维列表实例详解
作者:xiaotao_1 时间:2022-03-26 05:17:11
1. 使用输入值初始化列表
nums = []
rows = eval(input("请输入行数:"))
columns = eval(input("请输入列数:"))
for row in range(rows):
nums.append([])
for column in range(columns):
num = eval(input("请输入数字:"))
nums[row].append(num)
print(nums)
输出结果为:
请输入行数:3
请输入列数:3
请输入数字:1
请输入数字:2
请输入数字:3
请输入数字:4
请输入数字:5
请输入数字:6
请输入数字:7
请输入数字:8
请输入数字:9
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
2. 使用随机数初始化列表
import random
numsList = []
nums = random.randint(0, 9)
rows = random.randint(3, 6)
columns = random.randint(3, 6)
for row in range(rows):
numsList.append([])
for column in range(columns):
num = random.randint(0, 9)
numsList[row].append(num)
print(numsList)
输出结果为:
[[0, 0, 4, 0, 7], [4, 2, 9, 6, 4], [7, 9, 8, 1, 7], [1, 7, 7, 5, 7]]
3. 对所有的元素求和
nums = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [3, 4, 7]]
total = 0
for i in nums:
for j in i:
total += j
print(total)
输出结果为:
total = 59
4. 按列求和
nums = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [3, 4, 7]]
total = 0
for column in range(len(nums[0])):
# print("column = ",column)
for i in range(len(nums)):
total += nums[i][column]
print(total)
输出结果为:
15
34
59
5. 找出和 最大的行
nums = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [3, 4, 7]]
maxRow = sum(nums[0])
indexOfMaxRow = 0
for row in range(1, len(nums)):
if sum(nums[row]) > maxRow:
maxRow = sum(nums[row])
indexOfMaxRow = row
print("索引:",indexOfMaxRow)
print("最大的行:",maxRow)
输出结果为:
索引: 2
最大的行: 24
6. 打乱二维列表的所有元素
import random
nums = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [3, 4, 7]]
for row in range(len(nums)):
for column in range(len(nums[row])):
i = random.randint(0, len(nums) - 1)
j = random.randint(0, len(nums[row]) - 1)
nums[row][column], nums[i][j] = nums[i][j], nums[row][column]
print(nums)
输出结果为:
[[3, 3, 5], [7, 6, 7], [4, 2, 4], [9, 8, 1]]
7. 排序
'''
sort方法,通过每一行的第一个元素进行排序。对于第一个元素相同的行,则通过它们的第二个元素进行排序。如果行中的第一个和第二个元素都相同,那么利用他们的第三个元素进行排序,依此类推'''
points = [[4, 2], [1, 7], [4, 5], [1, 2], [1, 1], [4, 1]]
points.sort()
print(points)
输出结果为:
[[1, 1], [1, 2], [1, 7], [4, 1], [4, 2], [4, 5]]
补充:下面给大家介绍下python 二维列表按列取元素。
直接切片是不行的:
>>> a=[[1,2,3], [4,5,6]]
>>> a[:, 0] # 尝试用数组的方法读取一列失败
TypeError: list indices must be integers or slices, not tuple
我们可以直接构造:
>>> b = [i[0] for i in a] # 从a中的每一行取第一个元素。
>>> print(b)
[1, 4]
总结
以上所述是小编给大家介绍的python中的二维列表实例详解网站的支持!
来源:https://blog.csdn.net/dimples_54/article/details/74885794
标签:python,二维,列表
0
投稿
猜你喜欢
MySQL如何优雅的删除大表实例详解
2024-01-24 10:15:03
python 实现分页显示从es中获取的数据方法
2023-04-21 07:13:18
使用python检测主机存活端口及检查存活主机
2021-08-01 05:20:27
Python绑定方法与非绑定方法详解
2021-04-12 00:20:19
Mysql常用sql语句汇总
2024-01-21 04:31:48
python 拷贝特定后缀名文件,并保留原始目录结构的实例
2021-08-30 04:17:46
Python Requests模拟登录实现图书馆座位自动预约
2022-01-31 00:25:46
几个优化WordPress中JavaScript加载体验的插件介绍
2023-11-03 12:03:08
用Python一键搭建Http服务器的方法
2021-08-09 19:36:32
Oracle数据库系统紧急故障处理方法
2010-07-26 12:57:00
Python使用Scrapy爬虫框架全站爬取图片并保存本地的实现代码
2021-04-30 21:32:11
Vue中添加过渡效果的方法
2024-04-10 10:33:03
Python运算符重载用法实例
2022-11-02 11:33:20
使用网际数据库浏览器在线维护Access数据库
2008-05-23 13:05:00
python中PS 图像调整算法原理之亮度调整
2021-02-09 17:51:01
Python:format格式化字符串详解
2021-02-11 19:23:58
python numpy存取文件的方式
2021-04-15 18:31:56
Python 错误和异常小结
2021-08-19 12:17:58
Python线程协作threading.Condition实现过程解析
2023-07-25 11:15:27
Fiddler如何抓取手机APP数据包
2023-12-02 04:18:57