任务答案有吗?

来源:3-8 Python的字符串编码

慕工程4522273

2021-08-11 18:52

任务答案

写回答 关注

1回答

  • Wind随风
    2021-08-12 12:55:31
    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)


    qq_慕函数...

    倒数第二行看不懂

    2022-01-09 19:02:50

    共 1 条回复 >

Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154156 学习 · 1075 问题

查看课程

相似问题