#函數(shù)用于計算任意個輸入數(shù)字的乘積 def?cmul(a,?*b): ????m?=?a????for?i?in?b: ????????m?*=?i????return?m print(eval("cmul({})".format(input()))) 查看完整描述