Discuss / Python / 学习打卡

学习打卡

Topic source

唐龙ya

#1 Created at ... [Delete] [Delete and Lock User]
# -*- coding: utf-8 -*-def product(x,*numbers):    for y in numbers:        x = x*y    return x

  • 1

Reply