问答详情
源自:3-8 Python的字符串编码

任务答案有吗?

任务答案

提问者:慕工程4522273 2021-08-11 18:52

个回答

  • 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)