0
def main():
    result1=cubeVolume(2)
    result2=cubeVolume(10)
    print("side length 2 equals",result1)
    print("side legnth 10 equals",result2)
def cubVolume(sidelength):
    volume = sideLength**3
    return volume
main()

我说这在以下序列行中执行是否正确?

9,1,2,6,7,8,3,4,5

4

1 回答 1

0

行号执行如下:

    1,6,9,
    1,2,
        6,7,8,
    3,
        6,7,8,
    4,5

6,7,8是你的 cubVolume 函数。这个函数应该是 cubeVolume(或者更 Pythonicly cube_volume)。编辑:我已按照 poke 的建议将 1、6、9 放入注册功能的状态。

于 2013-10-08T01:50:49.983 回答