Discuss / Python / 这个好理解了吧

这个好理解了吧

Topic source

楠先森咩

#1 Created at ... [Delete] [Delete and Lock User]

def product(x, *y):

    for i in y:

        x =x* i

    return x


  • 1

Reply