慕工程4522273
2021-08-11 18:52
任务答案
L = [[1,2,3], [5, 3, 2], [7,3,2]] for cube in L: length = cube[0] width = cube[1] height = cube[2] result = length * width * 2 + width * height * 2 + length * height * 2 print(result)
Python3 入门教程(新版)
154156 学习 · 1075 问题
相似问题