简体   繁体   中英

Nested Function in python, when I run it, the result came out is NameError. Can anyone help me?

def area(shape, length):
    def circle(radius):
        return(3.14 * (radius ** 2))
    def square(length):
        return(length ** 2)
    return shape(length)
print(area(circle, 10))
print(area(square, 5))
def area(shape, length):
    def circle(radius):
        return(3.14 * (radius ** 2))
    def square(length):
        return(length ** 2)
    return shape(length)
print(area(circle, 10))
print(area(square, 5))
def area(shape, length):
    def circle(radius):
        return(3.14 * (radius ** 2))
    def square(length):
        return(length ** 2)
    return shape(length)
print(area(circle, 10))
print(area(square, 5))
def area(shape, length):
    def circle(radius):
        return(3.14 * (radius ** 2))
    def square(length):
        return(length ** 2)
    return shape(length)
print(area(circle, 10))
print(area(square, 5))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM