将矩阵转换为字典值列表的 Python 程序
如果需要将矩阵转换为字典值列表,可以使用简单的字典解析。
示例
以下是相同代码的演示
my_list = [[71, 26, 35], [65, 56, 37], [89, 96, 99]] print("The list is :") print(my_list) my_result = {my_index + 1 : my_list[my_index] for my_index in range(len(my_list))} print("The result is:") print(my_result)
输出
The list is : [[71, 26, 35], [65, 56, 37], [89, 96, 99]] The result is: {1: [71, 26, 35], 2: [65, 56, 37], 3: [89, 96, 99]}
Learn Python in-depth with real-world projects through our Python certification course. Enroll and become a certified expert to boost your career.
说明
定义了一个列表中的列表,并在控制台上显示。
使用字典解析来迭代列表,并使用列表切片和索引检查列表的特定元素。
这将转换为字典并赋值给变量。
这在控制台上显示为输出。
Advertisement