当前位置:网站首页>实例038:矩阵对角线之和
实例038:矩阵对角线之和
2022-08-04 01:35:00 【懒笑翻】
题目:求一个3*3矩阵主对角线元素之和。
程序分析: 主对角线上 i 和 j相同
代码:
mat = [[1, 2, 3],
[3, 4, 5],
[4, 5, 6]
]
res = 0
for i in range(len(mat)):
print(i, i, ':', mat[i][i])
res += mat[i][i]
print('主对角线和为:', res)
结果:
"""
学习中遇到问题没人解答?小编创建了一个Python学习交流QQ群,扫码下方官方推荐的群即可进入哦
寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书!↓↓↓↓↓↓
"""
边栏推荐
- C 学生管理系统_分析
- C语言:学生管理系统(链表版)
- pygame 中的transform模块
- 快速入门EasyX图形编程
- esp32 releases robot battery voltage to ros2 (micro-ros+CoCube)
- 在Activity中获取另一个XML文件的控件
- redis中常见的问题(缓存穿透,缓存雪崩,缓存击穿,redis淘汰策略)
- Use nodejs switch version (no need to uninstall and reinstall)
- Electronics manufacturing enterprise deployment WMS what are the benefits of warehouse management system
- 【正则表达式】笔记
猜你喜欢
即席查询——Presto
JS 保姆级贴心,从零教你手写实现一个防抖debounce方法
5.scrapy中间件&分布式爬虫
Observability:你所需要知道的关于 Syslog 的一些知识
LeetCode third topic (the Longest Substring Without Repeating Characters) trilogy # 3: two optimization
工程制图复习题(带答案)
- heavy OpenCV 】 【 mapping
LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之三:两次优化
jmeter跨平台运行csv等文件
pygame 中的transform模块
随机推荐
持续投入商品研发,叮咚买菜赢在了供应链投入上
Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.
Use nodejs switch version (no need to uninstall and reinstall)
TensoFlow学习记录(二):基础操作
jmeter distributed stress test
lombok注解@RequiredArgsConstructor的使用
Slipper - virtual point, shortest path
jmeter跨平台运行csv等文件
thinkphp 常用技巧
优秀的测试/开发程序员,是怎样修炼的?步步为营地去执行......
持续投入商品研发,叮咚买菜赢在了供应链投入上
静态文件快速建站
Android interview questions and answer analysis of major factories in the first half of 2022 (continuously updated...)
多线程 之 JUC 学习篇章一 创建多线程的步骤
Deng Qinglin, Alibaba Cloud Technical Expert: Best Practices for Disaster Recovery across Availability Zones and Multiple Lives in Different Locations on the Cloud
C # WPF equipment monitoring software (classic) - the next
typescript53-泛型约束
Apache DolphinScheduler新一代分布式工作流任务调度平台实战-中
一个项目的整体测试流程有哪几个阶段?测试方法有哪些?
html select标签赋值数据库查询结果